Tweak fail threshold

This commit is contained in:
silas 2022-10-10 19:58:46 +01:00 committed by GitHub
parent 657bc24ce0
commit 27d875ae12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
# Fail the job on critical vulnerabiliies with fix available
# Fail the job on high/critical vulnerabiliies with fix available
- name: Scan Dependencies and secrets
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'table'
severity: 'CRITICAL'
severity: 'HIGH,CRITICAL'
exit-code: '1'