Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
continue-on-error: true

- name: Trivy filesystem vulnerability scan (SARIF)
id: trivy
uses: aquasecurity/trivy-action@0.24.0
with:
scan-type: fs
Expand All @@ -58,8 +59,8 @@ jobs:
continue-on-error: true

- name: Upload SARIF to GitHub code scanning
if: ${{ always() }}
uses: github/codeql-action/upload-sarif@v3
if: ${{ always() && steps.trivy.outcome == 'success' }}
Comment thread
IEvangelist marked this conversation as resolved.
Outdated
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: trivy-results.sarif

Expand Down