Update trivy-scan.yml

This commit is contained in:
silas 2022-01-08 10:05:30 +00:00 committed by GitHub
parent e5f04560b5
commit 1a9dbead18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 3 deletions

View File

@ -20,17 +20,28 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
# Run Trivy with the following args
# Run Trivy to fail the job on critical vulnerabiliies with fix available
- name: Run Trivy
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs' # Filesystem mode
ignore-unfixed: true # Ignore vulnerabilities with no available fix
format: 'table' # Table output mode as next step will report in security tab
severity: 'CRITICAL' # Error only on critical vulnerabilities
exit-code: '1' # Fail the job if a critical vulnerability with fix available is found
# Run Trivy reporting all vulnerabilities to the security tab
- name: Run Trivy
uses: aquasecurity/trivy-action@master
if: always() # Run this step even if job fails due to critical vuln
with:
scan-type: 'fs' # Filesystem mode
ignore-unfixed: true # Ignore vulnerabilities with no available fix
format: 'template' # Template output mode
template: '@/contrib/sarif.tpl' # SARIF template to be compatible with GitHub security tab
output: 'trivy-results.sarif' # Output file name
severity: 'CRITICAL' # Report error only on critical vulnerabilities. Warn on lower severities
exit-code: '1' # Fail the job if a critical vulnerability with fix available is found
severity: 'CRITICAL,HIGH,MEDIUM' # Report on critical/high/medium vulnerabiliies
exit-code: '0' # No failing as for reporting purposes
# Generate the output as SARIF and upload to the security tab
- name: Upload Trivy results