save results publicly

Signed-off-by: Neil Hanlon <neil@rockylinux.org>
This commit is contained in:
Neil Hanlon 2022-03-25 09:59:59 -04:00
parent 773b62c57d
commit 9c7987e363
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 19 additions and 0 deletions

View File

@ -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'