Scan Latest Two Semantically Versioned Docker Image Tags with ORT #34
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
# SPDX-FileCopyrightText: 2024 PNED G.I.E. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Scan Latest Two Semantically Versioned Docker Image Tags with ORT | |
on: | |
schedule: | |
- cron: "0 14 * * 1" # Works on Every Monday at 14:00 UTC | |
workflow_dispatch: | |
jobs: | |
fetch-and-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Docker | |
run: | | |
sudo service docker start | |
docker ps | |
- name: Login to GitHub Container Registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
docker info | |
- name: List Docker Image Tags and Fetch Latest Two | |
run: | | |
IMAGE="ghcr.io/genomicdatainfrastructure/gdi-userportal-frontend" | |
echo "Fetching Docker image tags..." | |
RESPONSE=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/orgs/genomicdatainfrastructure/packages/container/gdi-userportal-frontend/versions") | |
# Log the response for debugging | |
echo "Response from curl: $RESPONSE" | |
# Extract tags and creation dates, then sort by creation date | |
TAGS_WITH_DATES=$(echo "$RESPONSE" | jq -r '.[] | .metadata.container.tags[] as $tag | "\($tag) \(.created_at)"' | sort -k2 -r) | |
# Filter out the 'main' tag and get the latest two tags | |
LATEST_TAGS=$(echo "$TAGS_WITH_DATES" | awk '$1 != "main" {print $1}' | head -n 2 | tr '\n' ' ') | |
# Print the results | |
echo "Tags fetched: $LATEST_TAGS" | |
echo "LATEST_PATCHES=$LATEST_TAGS" >> $GITHUB_ENV | |
- name: Pull and Scan Docker Images with Trivy | |
run: | | |
IFS=' ' read -ra TAGS <<< "${{ env.LATEST_PATCHES }}" | |
for TAG in "${TAGS[@]}" | |
do | |
IMAGE_TAG="ghcr.io/genomicdatainfrastructure/gdi-userportal-frontend:$TAG" | |
echo "Pulling $IMAGE_TAG" | |
docker pull $IMAGE_TAG || exit 1 | |
echo "Scanning $IMAGE_TAG with Trivy" | |
trivy image --severity CRITICAL,HIGH --exit-code 1 "$IMAGE_TAG" || exit 1 | |
done | |
- name: OSS Review Toolkit (ORT) Analysis | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
- uses: oss-review-toolkit/ort-ci-github-action@7f23c1f8d169dad430e41df223d3b8409c7a156e | |
with: | |
allow-dynamic-versions: "true" | |
fail-on: "issues" | |
run: "cache-dependencies,cache-scan-results,labels,analyzer,evaluator,advisor,reporter,upload-results" |