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 ca62505 commit 64e2116Copy full SHA for 64e2116
.github/workflows/anchore.yml
@@ -40,12 +40,15 @@ jobs:
40
- name: Build the Docker image
41
run: docker build . --file scripts/Docker/Dockerfile --tag localbuild/testimage:latest
42
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled
43
- uses: anchore/[email protected]
+ uses: anchore/scan-action@v3
44
+ id: scan
45
with:
46
image: "localbuild/testimage:latest"
47
acs-report-enable: true
48
fail-build: false
49
- name: Upload Anchore Scan Report
50
uses: github/codeql-action/upload-sarif@v2
51
- sarif_file: results.sarif
52
+ sarif_file: ${{ steps.scan.outputs.sarif }}
53
+ - name: Inspect action SARIF report
54
+ run: cat ${{ steps.scan.outputs.sarif }}
0 commit comments