Skip to content

feat: Allow overriding the default recovery window. #26

feat: Allow overriding the default recovery window.

feat: Allow overriding the default recovery window. #26

Workflow file for this run

name: Trivy Analysis
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
security-events: write
jobs:
trivy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.33.1
with:
format: sarif
output: trivy-results.sarif
scan-type: config
trivy-config: trivy.yaml
- name: Parse SARIF file for annotations
if: always()
uses: jontyms/sarif-annotations@v0.0.3
with:
annotation-level: notice
sarif-file: trivy-results.sarif
- name: Upload SARIF result
if: always()
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: trivy-results.sarif