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.
2 parents e36307b + c11f288 commit 33358ceCopy full SHA for 33358ce
.github/workflows/vulnerability-scan.yml
@@ -21,8 +21,10 @@ jobs:
21
run: docker build . --file Dockerfile --tag symfony-flex-backend:master
22
23
- name: Scan image with Trivy
24
- uses: lazy-actions/gitrivy@v3
+ uses: aquasecurity/trivy-action@0.28.0
25
with:
26
- token: ${{ secrets.GITHUB_TOKEN }}
27
- image: symfony-flex-backend:master
28
- ignore-unfixed: true
+ image-ref: symfony-flex-backend:master
+ ignore-unfixed: 'true'
+ exit-code: '1'
29
+ vuln-type: 'os,library'
30
+ severity: 'CRITICAL,HIGH'
0 commit comments