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 08d3290 commit 6ba4434Copy full SHA for 6ba4434
.github/workflows/vulnerability.yaml
@@ -86,7 +86,7 @@ jobs:
86
with:
87
image-ref: ${{ env.IMAGE_NAME }}
88
format: 'sarif'
89
- output: 'trivy-results-${{ matrix.dockerfile }}.sarif'
+ output: 'trivy-results-${{ env.IMAGE_NAME }}.sarif'
90
severity: 'CRITICAL,HIGH'
91
timeout: '10m'
92
ignore-unfixed: true
@@ -95,6 +95,6 @@ jobs:
95
uses: github/codeql-action/upload-sarif@v3
96
if: always()
97
98
- sarif_file: 'trivy-results-${{ matrix.dockerfile }}.sarif'
99
- category: 'trivy-${{ matrix.dockerfile }}'
+ sarif_file: 'trivy-results-${{ env.IMAGE_NAME }}.sarif'
+ category: 'trivy-${{ env.IMAGE_NAME }}'
100
...
0 commit comments