[CI] Add Trivy workflow #1
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
# This workflow performs a trivy check of docker config files. | |
name: Trivy | |
on: | |
pull_request: | |
paths: | |
- 'devops/containers/**' | |
- 'devops/.trivyignore.yaml' | |
- '.github/workflows/trivy.yml' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Trivy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: devops | |
# There is a github action, but for some reason it ignores ignore-file. | |
- name: Install Trivy | |
run: | | |
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh | |
./bin/trivy --version | |
- name: Run Trivy vulnerability scanner | |
run: ./bin/trivy config --format json --output trivy-report.json --ignorefile=devops/.trivyignore.yaml devops/containers --exit-code 1 | |
- name: Upload report artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: trivy-report | |
path: trivy-report.json | |
retention-days: 3 |