Skip to content

Scan

Scan #260

Workflow file for this run

name: Scan
on:
schedule:
- cron: "0 7 * * *"
# Allow to run this workflow manually
workflow_dispatch:
env:
CONTAINER_REGISTRY: ghcr.io
CONTAINER_IMAGE_NAME: ${{ github.repository }}
CONTAINER_IMAGE_VERSION: latest
jobs:
# reset-trivy-cache:
# runs-on: ubuntu-latest
# steps:
# - name: Remove all caches and database of the trivy scanner
# uses: aquasecurity/trivy-action@f781cce5aab226378ee181d764ab90ea0be3cdd8 # v0.25.0
# env:
# TRIVY_RESET: true
# TRIVY_DEBUG: true
# with:
# scan-type: "image"
# - name: Download trivy vulnerabilities DB
# uses: aquasecurity/trivy-action@f781cce5aab226378ee181d764ab90ea0be3cdd8 # v0.25.0
# env:
# TRIVY_DEBUG: true
# TRIVY_DOWNLOAD_DB_ONLY: true
# with:
# scan-type: "image"
vulnerability-scan-backend:
runs-on: ubuntu-latest
# needs: reset-trivy-cache
strategy:
matrix:
container-name:
[
"${{ github.repository }}",
"${{ github.repository }}-app",
"${{ github.repository }}-content",
]
permissions:
contents: read
id-token: write # for cosign w/ keyless signing
packages: write # for updating cosign attestation
security-events: write
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # v0.28.0
env:
TRIVY_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db
with:
image-ref: ${{ env.CONTAINER_REGISTRY }}/${{ matrix.container-name }}:${{ env.CONTAINER_IMAGE_VERSION }}
format: "sarif"
output: "trivy-results.sarif"
- name: Check trivy results
run: |
if grep -qE 'HIGH|CRITICAL' trivy-results.sarif; then
echo "Vulnerabilities found"
exit 1
else
echo "No significant vulnerabilities found"
exit 0
fi
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
if: ${{ always() && github.ref == 'refs/heads/main' }} # Bypass non-zero exit code..
with:
sarif_file: "trivy-results.sarif"
- name: Generate cosign vulnerability scan record
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # v0.28.0
env:
TRIVY_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db
with:
image-ref: ${{ env.CONTAINER_REGISTRY }}/${{ matrix.container-name }}:${{ env.CONTAINER_IMAGE_VERSION }}
format: "cosign-vuln"
output: "vulnerabilities.json"
- name: Install cosign
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
- name: Log into container registry
uses: docker/login-action@v3
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pull latest docker image
run: docker pull ghcr.io/digitalservicebund/a2j-rechtsantragstelle:latest
- name: Get Docker image digest
id: get_docker_digest
run: |
digest=$(docker inspect --format='{{ index .RepoDigests 0 }}' ghcr.io/digitalservicebund/a2j-rechtsantragstelle:latest)
echo "::set-output name=digest::$digest"
- name: Print Docker image digest
run: echo "Image latest digest is ${{ steps.get_docker_digest.outputs.digest }}\n"
- name: Set up environment
run: echo "IMAGE_DIGEST=${{ steps.get_docker_digest.outputs.digest }}" >> $GITHUB_ENV
- name: Attest vulnerability scan
run: cosign attest --yes --replace --predicate vulnerabilities.json --type vuln $IMAGE_DIGEST