Trivy vulnerability scan (#1293)

* Create trivy.yml

* Update trivy.yml

* Change scanning config
This commit is contained in:
dotasek 2023-06-07 13:52:14 -04:00 committed by GitHub
parent 619703dbf8
commit f05345774d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 0 deletions

34
.github/workflows/trivy.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: Security Scans
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run static analysis
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
vuln-type: 'library'
scanners: 'vuln,secret,config'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'MEDIUM,HIGH,CRITICAL'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results.sarif'
category: 'code'