This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update Trivy configuration in security scan workflow
- Loading branch information
1 parent
484ea2b
commit c1960ea
Showing
1 changed file
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,40 +27,44 @@ jobs: | |
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: image:latest | ||
format: 'json' | ||
vuln-type: 'os,library' | ||
output: 'trivy-results.json' | ||
env: | ||
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2 | ||
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db:1 | ||
TRIVY_FORMAT: json | ||
TRIVY_OUTPUT: 'trivy-results.json' | ||
|
||
- name: Save vulnerabilities report in tabular format | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
vuln-type: '' | ||
format: 'table' | ||
output: 'trivy-results.txt' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: 'trivy-results.txt' | ||
|
||
- name: Display vulnerabilities report | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
vuln-type: '' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: '' | ||
|
||
- name: Fail on high and critical vulnerabilities | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
exit-code: '1' | ||
vuln-type: '' | ||
severity: 'HIGH,CRITICAL' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: '' | ||
|
||
- name: Publish scan report | ||
if: always() | ||
|