Scan images #602
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: Scan images | |
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-and-scan.yaml | |
with: | |
bundle-directory: ${{ matrix.bundle-path }} |