Trivy #1595
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) 2021,2023 Contributors to the Eclipse Foundation | |
# | |
# See the NOTICE file(s) distributed with this work for additional | |
# information regarding copyright ownership. | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Apache License, Version 2.0 which is available at | |
# https://www.apache.org/licenses/LICENSE-2.0. | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | |
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | |
# License for the specific language governing permissions and limitations | |
# under the License. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
################################################################################# | |
--- | |
name: "Trivy" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
workflow_run: | |
workflows: [ "Publish Artefacts" ] | |
branches: | |
- main | |
- releases | |
- release/* | |
- hotfix/* | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
types: | |
- completed | |
jobs: | |
git-sha7: | |
name: Determine short git sha | |
runs-on: ubuntu-latest | |
outputs: | |
value: ${{ steps.git-sha7.outputs.SHA7 }} | |
steps: | |
- name: Resolve git 7-chars sha | |
id: git-sha7 | |
run: | | |
echo "SHA7=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT | |
trivy-analyze-config: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner in repo mode | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: "config" | |
# ignore-unfixed: true | |
exit-code: "0" | |
hide-progress: false | |
format: "sarif" | |
output: "trivy-results-config.sarif" | |
severity: "CRITICAL,HIGH" | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
if: always() | |
with: | |
sarif_file: "trivy-results-config.sarif" | |
trivy: | |
needs: [ git-sha7 ] | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # continue scanning other images although if the other has been vulnerable | |
matrix: | |
image: | |
- edc-runtime-memory | |
- edc-controlplane-postgresql-azure-vault | |
- edc-controlplane-postgresql-hashicorp-vault | |
- edc-dataplane-azure-vault | |
- edc-dataplane-hashicorp-vault | |
steps: | |
- uses: actions/checkout@v4 | |
## This step will fail if the docker images is not found | |
- name: "Check if image exists" | |
id: imageCheck | |
run: | | |
docker buildx imagetools inspect --format '{{ json . }}' tractusx/${{ matrix.image }}:sha-${{ needs.git-sha7.outputs.value }} | |
continue-on-error: true | |
## the next two steps will only execute if the image exists check was successful | |
- name: Run Trivy vulnerability scanner | |
if: success() && steps.imageCheck.outcome != 'failure' | |
uses: aquasecurity/[email protected] | |
with: | |
image-ref: "tractusx/${{ matrix.image }}:sha-${{ needs.git-sha7.outputs.value }}" | |
format: "sarif" | |
output: "trivy-results-${{ matrix.image }}.sarif" | |
exit-code: "0" | |
severity: "CRITICAL,HIGH" | |
timeout: "10m0s" | |
- name: Upload Trivy scan results to GitHub Security tab | |
if: success() && steps.imageCheck.outcome != 'failure' | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: "trivy-results-${{ matrix.image }}.sarif" |