Check Security of latest image on Docker Hub #194
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: Check Security of latest image on Docker Hub | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Publish Docker image"] | |
types: | |
- completed | |
jobs: | |
vulnerability_scanner: | |
name: run vulnerability scanner | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'mongocamp/mongodb:latest' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
ignore-unfixed: true | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: 'trivy-results.sarif' |