Scheduled CVE vulnerability scan of 5.x published images. #109
This file contains hidden or 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: vulnerability-scan-schedule-5.x | |
| run-name: Scheduled CVE vulnerability scan of 5.x published images. | |
| env: | |
| REGISTRY: ghcr.io | |
| on: | |
| schedule: | |
| - cron: '0 22 * * 3' | |
| workflow_dispatch: | |
| inputs: | |
| summary: | |
| description: 'Summary of the scheduled scan.' | |
| required: false | |
| default: 'Trivy CVE scan of 5.x published images.' | |
| tag: | |
| description: 'Tag to scan.' | |
| required: false | |
| default: '5.x' | |
| jobs: | |
| vulnerability-scan-schedule: | |
| name: Scan for vulnerabilities on 5.x images | |
| uses: "dpc-sdp/bay/.github/workflows/vulnerability-scan.yml@5.x" | |
| with: | |
| tag: "5.x" | |
| summary: "Trivy CVE scan of 5.x published images." |