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 10c526d commit d0f0f15Copy full SHA for d0f0f15
.github/workflows/php.yml
@@ -62,3 +62,17 @@ jobs:
62
with:
63
token: ${{ secrets.CODECOV_TOKEN }}
64
files: ./coverage.xml
65
+
66
+ - name: Run Trivy vulnerability scanner in repo mode
67
+ uses: aquasecurity/[email protected]
68
+ with:
69
+ scan-type: 'fs'
70
+ ignore-unfixed: true
71
+ format: 'sarif'
72
+ output: 'trivy-results.sarif'
73
+ severity: 'CRITICAL'
74
75
+ - name: Upload Trivy scan results to GitHub Security tab
76
+ uses: github/codeql-action/upload-sarif@v3
77
78
+ sarif_file: 'trivy-results.sarif'
0 commit comments