Skip to content

Scan latest container image with Trivy #502

Scan latest container image with Trivy

Scan latest container image with Trivy #502

Workflow file for this run

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"