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 5772b9e commit 352b4a6Copy full SHA for 352b4a6
.github/workflows/vuln-scans.yml
@@ -151,12 +151,18 @@ jobs:
151
path: ./dist
152
- run: docker load -i ./dist/image.tar
153
- uses: anchore/scan-action@v6
154
+ id: anchore-scan
155
with:
156
severity-cutoff: "high"
157
only-fixed: true
158
add-cpes-if-none: true
- output-format: "table"
159
+ output-format: sarif
160
image: "otelcol${{ matrix.FIPS == true && '-fips' || '' }}:latest"
161
+ - name: Upload result to GitHub Code Scanning
162
+ if: always()
163
+ uses: github/codeql-action/upload-sarif@v3
164
+ with:
165
+ sarif_file: ${{ steps.anchore-scan.outputs.sarif }}
166
167
anchore-win-image-scan:
168
runs-on: ${{ matrix.OS }}
0 commit comments