Build and scan rocks, save and send scan reports #97
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: Build and scan ROCKs, save and send scan reports | |
on: | |
schedule: | |
# every day at 1:12AM UTC | |
- cron: '12 1 * * *' | |
secrets: | |
CVE_REPORT_JIRA_URL: | |
required: true | |
jobs: | |
build-scan-rocks: | |
name: Build and scan ROCKs | |
strategy: | |
matrix: | |
rock: | |
- api-server | |
- persistenceagent | |
- scheduledworkflow | |
- visualisation-server | |
- viewer-crd-controller | |
- frontend | |
uses: canonical/charmed-kubeflow-workflows/.github/workflows/build_and_scan_rock.yaml@main | |
secrets: | |
JIRA_URL: ${{ secrets.CVE_REPORT_JIRA_URL }} | |
with: | |
rock: ${{ matrix.rock }} |