chore: Add Pull Request Template #1307
Workflow file for this run
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
name: Security Scan | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
schedule: | |
- cron: "0 3 * * *" | |
jobs: | |
trivy: | |
name: Trivy security scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run Trivy vulnerability scanner in repo mode | |
uses: aquasecurity/[email protected] | |
if: ${{ ! github.event.schedule }} # Do not run inline checks when running periodically | |
with: | |
scan-type: fs | |
ignore-unfixed: true | |
exit-code: 1 | |
severity: 'HIGH,CRITICAL' | |
- name: Run Trivy vulnerability scanner sarif output | |
uses: aquasecurity/[email protected] | |
if: ${{ github.event.schedule }} # Generate sarif when running periodically | |
with: | |
scan-type: fs | |
ignore-unfixed: true | |
severity: 'HIGH,CRITICAL' | |
format: 'template' | |
template: '@/contrib/sarif.tpl' | |
output: 'trivy-results.sarif' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
if: ${{ github.event.schedule }} # Upload sarif when running periodically | |
with: | |
sarif_file: 'trivy-results.sarif' |