SLU Wastewater Dashboards Refactoring (#1196) #1189
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
# Trivy: Scan of current branch | |
# Trivy is a comprehensive and versatile security scanner. | |
# Trivy has scanners that look for security issues, and targets where it can find those issues. | |
# https://github.com/aquasecurity/trivy | |
# | |
# This runs on every push for every branch | |
# ---------------------------------------- | |
name: Trivy - branch scan | |
on: [push, pull_request] | |
jobs: | |
scan: | |
permissions: | |
contents: read | |
security-events: write | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@0.9.2 | |
with: | |
scan-type: "fs" | |
ignore-unfixed: true | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
severity: 'CRITICAL,HIGH' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: 'trivy-results.sarif' | |
category: trivy-branch |