Scan latest container image with Trivy #526
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: Scan latest container image with Trivy | |
on: | |
workflow_run: | |
workflows: | |
[ | |
"Build and push all supported versions of the BorgBackup container image", | |
] | |
types: | |
- completed | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
scan-ghcr: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
name: Scan image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: "ghcr.io/${{ github.repository_owner }}/borgbackup:1.2" | |
format: "sarif" | |
output: "trivy-results.sarif" | |
trivy-config: trivy.yaml | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: "trivy-results.sarif" |