bouquin/.forgejo/workflows/trivy.yml
Miguel Jacq 93d7a676a5
Some checks failed
CI / test (push) Has been cancelled
Add trivy workflow
2025-11-13 14:43:07 +11:00

23 lines
428 B
YAML

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