We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e5f8df commit c5590c2Copy full SHA for c5590c2
1 file changed
.github/workflows/build.yml
@@ -21,10 +21,15 @@ jobs:
21
run: ./tests.sh
22
23
- name: Scan the image
24
+ id: scan
25
uses: anchore/scan-action@v2
26
with:
27
image: "mendhak/http-https-echo:latest"
28
debug: false
29
acs-report-enable: true
30
+ - name: upload Anchore scan SARIF report
31
+ uses: github/codeql-action/upload-sarif@v1
32
+ with:
33
+ sarif_file: ${{ steps.scan.outputs.sarif }}
34
35
0 commit comments