Examples docker images BoM/CVE scan on manual event #4
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
# Copyright (C) 2024 Intel Corporation | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Examples docker images BoM/CVE scan on manual event | |
on: | |
workflow_dispatch: | |
inputs: | |
node: | |
default: "gaudi" | |
description: "Hardware to run scan" | |
required: true | |
type: string | |
examples: | |
default: "ChatQnA" | |
description: 'List of examples to scan [AudioQnA,ChatQnA,CodeGen,CodeTrans,DocSum,FaqGen,SearchQnA,Translation]' | |
required: true | |
type: string | |
images: | |
default: "" | |
description: 'List of images to scan' | |
required: false | |
type: string | |
tag: | |
default: "latest" | |
description: "Tag for images to scan" | |
required: true | |
type: string | |
sbom_scan: | |
default: true | |
description: 'Scan images for BoM' | |
required: false | |
type: boolean | |
trivy_scan: | |
default: true | |
description: 'Scan images for CVE' | |
required: false | |
type: boolean | |
permissions: read-all | |
jobs: | |
get-image-list: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.scan-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout out Repo | |
uses: actions/checkout@v4 | |
- name: Set Matrix | |
id: scan-matrix | |
run: | | |
if [[ ! -z "${{ inputs.images }}" ]]; then | |
images=($(echo ${{ inputs.images }} | tr ',' ' ')) | |
image_list=$(printf '%s\n' "${images[@]}" | sort -u | jq -R '.' | jq -sc '.') | |
else | |
pip install yq | |
examples=($(echo ${{ inputs.examples }} | tr ',' ' ')) | |
image_list=[] | |
for example in ${examples[@]} | |
do | |
images=$(cat ${{ github.workspace }}/${example}/docker/docker_build_compose.yaml | yq -r '.[]' | jq 'keys' | jq -c '.') | |
image_list=$(echo ${image_list} | jq -s '.[0] + .[1] | unique' - <(echo ${images})) | |
done | |
fi | |
echo "print image list..." | |
echo "$image_list" | jq . | jq -r '.[]' | |
echo "end of image list..." | |
echo "matrix=$(echo ${image_list} | jq -c '.')" >> $GITHUB_OUTPUT | |
scan-docker: | |
needs: get-image-list | |
if: ${{ fromJSON(inputs.sbom_scan) }} || ${{ fromJSON(inputs.trivy_scan) }} | |
runs-on: "docker-build-${{ inputs.node }}" | |
strategy: | |
matrix: | |
image: ${{ fromJson(needs.get-image-list.outputs.matrix) }} | |
fail-fast: false | |
steps: | |
- name: Pull Image | |
run: | | |
docker pull ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} | |
echo "OPEA_IMAGE_REPO=${OPEA_IMAGE_REPO}" >> $GITHUB_ENV | |
- name: SBOM Scan Container | |
uses: anchore/[email protected] | |
if: ${{ inputs.sbom_scan }} | |
with: | |
image: ${{ env.OPEA_IMAGE_REPO }}opea/${{ matrix.image }}:${{ inputs.tag }} | |
output-file: ${{ matrix.image }}-sbom-scan.txt | |
format: 'spdx-json' | |
- name: Security Scan Container | |
uses: aquasecurity/[email protected] | |
if: ${{ inputs.trivy_scan }} | |
with: | |
image-ref: ${{ env.OPEA_IMAGE_REPO }}opea/${{ matrix.image }}:${{ inputs.tag }} | |
output: ${{ matrix.image }}-trivy-scan.txt | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' | |
- name: Cleanup | |
if: always() | |
run: docker rmi -f ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} || true | |
- uses: actions/[email protected] | |
if: ${{ inputs.sbom_scan }} | |
with: | |
name: sbom-scan | |
path: ${{ matrix.image }}-*-sbom-scan.txt | |
overwrite: true | |
- uses: actions/[email protected] | |
if: ${{ inputs.trivy_scan }} | |
with: | |
name: trivy-scan | |
path: ${{ matrix.image }}-*-trivy-scan.txt | |
overwrite: true |