Upload scan results to github security tab

This commit is contained in:
Neil Hanlon 2022-03-15 08:44:54 -04:00
parent d1b15e475f
commit 81905fbe8a
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 9 additions and 2 deletions

View File

@ -6,7 +6,7 @@ on:
jobs:
scan:
name: Scan
name: Scan for Security Vulnerabilities
runs-on: ubuntu-18.04
steps:
- name: Checkout code
@ -16,8 +16,15 @@ jobs:
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/library/rockylinux:8'
format: 'table'
format: 'sarif'
output: 'trivy-results.sarif'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
if: always()
with:
sarif_file: 'trivy-results.sarif'