mirror of
https://github.com/rocky-linux/sig-cloud-instance-images.git
synced 2024-12-18 15:18:35 +00:00
save results publicly
Signed-off-by: Neil Hanlon <neil@rockylinux.org>
This commit is contained in:
parent
773b62c57d
commit
9c7987e363
19
.github/workflows/scan.yml
vendored
19
.github/workflows/scan.yml
vendored
@ -31,3 +31,22 @@ jobs:
|
||||
if: always()
|
||||
with:
|
||||
sarif_file: 'trivy-results.sarif'
|
||||
|
||||
- name: Run Trivy vulnerability scanner
|
||||
uses: aquasecurity/trivy-action@master
|
||||
if: always()
|
||||
with:
|
||||
image-ref: 'docker.io/library/rockylinux:8'
|
||||
format: 'table'
|
||||
output: 'trivy-results'
|
||||
exit-code: '1'
|
||||
ignore-unfixed: true
|
||||
vuln-type: 'os,library'
|
||||
severity: 'CRITICAL,HIGH,MEDIUM'
|
||||
|
||||
- name: Save scan results as an artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: 'trivy-results'
|
||||
path: 'trivy-results'
|
||||
|
Loading…
Reference in New Issue
Block a user