Maybe fix messaging #2881
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: Trivy Security Scan | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
security_scan_rootfs: | |
name: security_scan_rootfs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run static analysis (rootfs) | |
uses: aquasecurity/[email protected] | |
env: | |
#try default GitHub DBs, if failing, use AWS mirror instead (https://github.com/aquasecurity/trivy-action/issues/389) | |
TRIVY_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db | |
TRIVY_JAVA_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-java-db,public.ecr.aws/aquasecurity/trivy-java-db | |
with: | |
scan-type: "rootfs" | |
scanners: "vuln,misconfig" | |
ignore-unfixed: true | |
format: "sarif" | |
output: "trivy-results-rootfs.sarif" | |
severity: "CRITICAL,HIGH" | |
github-pat: ${{ secrets.GITHUB_TOKEN }} | |
security_scan_repo: | |
name: security_scan_repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run static analysis (repo) | |
uses: aquasecurity/[email protected] | |
env: | |
#try default GitHub DBs, if failing, use AWS mirror instead (https://github.com/aquasecurity/trivy-action/issues/389) | |
TRIVY_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db | |
TRIVY_JAVA_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-java-db,public.ecr.aws/aquasecurity/trivy-java-db | |
with: | |
scan-type: "repo" | |
scanners: "vuln,misconfig" | |
ignore-unfixed: true | |
format: "sarif" | |
output: "trivy-results-repo.sarif" | |
severity: "CRITICAL,HIGH" | |
github-pat: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload Trivy scan results to GitHub Security tab (repo) | |
uses: github/codeql-action/upload-sarif@v2 | |
continue-on-error: true | |
with: | |
sarif_file: "trivy-results-repo.sarif" | |
category: "code" |