We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5463965 commit aa69f85Copy full SHA for aa69f85
β.github/workflows/anchore.yml
@@ -0,0 +1,21 @@
1
+
2
+name: SBOM
3
+on: [push]
4
+jobs:
5
+ anchore_job:
6
+ runs-on: ubuntu-latest
7
+ name: Anchore scan directory
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v2
11
+ - name: Scan current project
12
+ id: scan
13
+ uses: anchore/scan-action@v2
14
+ with:
15
+ path: "./"
16
+ fail-build: true
17
+ acs-report-enable: true
18
+ - name: upload Anchore scan SARIF report
19
+ uses: github/codeql-action/upload-sarif@v1
20
21
+ sarif_file: ${{ steps.scan.outputs.sarif }}
0 commit comments