Skip to content

Security Scanning

Security Scanning #9

Workflow file for this run

name: Security Scanning
on:
workflow_call:
schedule:
- cron: "0 2 * * 1"
jobs:
trivy:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup trivy
uses: aquasecurity/[email protected]
with:
cache: true
version: latest
- name: Run trivy configuration checks
run: |
trivy config . --config=.trivy.yaml --ignorefile=.trivyignore
- name: Run trivy filesystem checks
run: |
trivy filesystem . --config=.trivy.yaml --ignorefile=.trivyignore --no-progress