bouquin/.forgejo/workflows/trivy.yml
Miguel Jacq 8e987275b5
Some checks failed
CI / test (push) Has been cancelled
Trivy / test (push) Failing after 0s
try again
2025-11-13 14:49:00 +11:00

26 lines
427 B
YAML

name: Trivy
on:
schedule:
- cron: '0 1 * * *'
push:
jobs:
test:
runs-on: docker
container:
- aquasec/trivy
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Trivy scanner
with:
scan-type: 'fs'
scan-ref: '.'
ignore-unfixed: true
format: 'table'
exit-code: '0'
limit-severity: 'CRITICAL'