Scan images #20
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: Scan images in bundle | |
strategy: | |
matrix: | |
release: [ 1.7, 1.6 ] | |
risk: [ stable ] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup tools | |
id: setup | |
run: | | |
sudo snap install yq | |
echo "date=$(date '+%Y-%m-%d-%H-%M-%S')" >> $GITHUB_OUTPUT | |
- name: Checkout kubeflow-ci | |
uses: actions/checkout@v3 | |
with: | |
repository: canonical/kubeflow-ci.git | |
sparse-checkout: scripts/images/ | |
ref: main | |
path: kubeflow-ci | |
- name: Get images | |
run: | | |
IMAGES=$(./kubeflow-ci/scripts/images/get-all-images.sh releases/${{ matrix.release }}/${{ matrix.risk }}/kubeflow/bundle.yaml ${{ matrix.release }}-${{ matrix.risk }}) | |
echo "$IMAGES" > ./image_list.txt | |
echo "Image list:" | |
cat ./image_list.txt | |
- name: Scan images | |
run: | | |
./kubeflow-ci/scripts/images/scan-images.sh ./image_list.txt | |
cp scan-summary.csv scan-summary-${{ steps.setup.outputs.date}}-${{ matrix.release }}-${{ matrix.risk }}.csv | |
- name: Prepare artifacts | |
run: | | |
tar zcvf trivy-reports-${{ steps.setup.outputs.date}}-${{ matrix.release }}-${{ matrix.risk }}-${{ strategy.job-index }}.tar.gz ./trivy-reports | |
- name: Upload Trivy reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy-reports | |
path: trivy-reports-${{ steps.setup.outputs.date}}-${{ matrix.release }}-${{ matrix.risk }}-${{ strategy.job-index }}.tar.gz | |
- name: Upload summary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: summary | |
path: scan-summary-${{ steps.setup.outputs.date}}-${{ matrix.release }}-${{ matrix.risk }}.csv |