Scan images #564
Workflow file for this run
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: Container image vulnerability scans | |
on: | |
schedule: | |
# every day at 1:12AM UTC | |
- cron: '12 1 * * *' | |
workflow_dispatch: | |
jobs: | |
scan-images: | |
name: Perform vulnerability scans | |
strategy: | |
fail-fast: false | |
matrix: | |
# specfy location of bundle(s) to be scanned | |
bundle-path: | |
- 1.8/stable/kubeflow | |
- 1.9/stable | |
- latest/edge | |
uses: ./.github/workflows/get-images-scan-and-upload-report.yaml | |
with: | |
bundle-path: ${{ matrix.bundle-path }} |