Trivy #521
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,2024 Contributors to the Eclipse Foundation | |
# Copyright (c) 2024 T-Systems International GmbH | |
# 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: | |
push: | |
branches: | |
- main | |
schedule: | |
# Once a day | |
- cron: "0 0 * * 0" | |
workflow_dispatch: | |
# Trigger manually | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/[email protected] | |
with: | |
image-ref: "tractusx/managed-simple-data-exchanger-frontend:latest" # Pull image from Docker Hub and run Trivy vulnerability scanner | |
format: "sarif" | |
output: "trivy-results.sarif" | |
exit-code: "1" # Trivy exits with code 1 if vulnerabilities are found, causing the workflow step to fail. | |
severity: "CRITICAL,HIGH" # While vulnerabilities of all severities are reported in the SARIF output, the exit code and workflow failure are triggered only by these specified severities (CRITICAL or HIGH). | |
hide-progress: false | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
if: always() | |
with: | |
sarif_file: "trivy-results.sarif" | |