Skip to content

Check Security of latest image on Docker Hub #2

Check Security of latest image on Docker Hub

Check Security of latest image on Docker Hub #2

name: Check Security of latest image on Docker Hub
on:
schedule:
- cron: '0 0 * * 0'
jobs:
vulnerability_scanner:
name: run vulnerability scanner
runs-on: ubuntu-18.04
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'