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 e0649cb commit 89edd3aCopy full SHA for 89edd3a
.github/workflows/main.yml
@@ -360,3 +360,13 @@ jobs:
360
361
- name: Build the Docker image
362
run: docker build . --file Dockerfile --tag symfony-flex-backend:${{ steps.vars.outputs.DOCKER_TAG }}
363
+
364
+ - name: Scan Docker image with Trivy vulnerability scanner
365
+ uses: aquasecurity/trivy-action@0.24.0
366
+ with:
367
+ image-ref: 'symfony-flex-backend:${{ steps.vars.outputs.DOCKER_TAG }}'
368
+ format: 'table'
369
+ exit-code: '1'
370
+ ignore-unfixed: true
371
+ vuln-type: 'os,library'
372
+ severity: 'CRITICAL,HIGH'
0 commit comments