Files
JonKazama-Hellion fc61170180
Security / scan (push) Successful in 37s
Use combined security-scan reusable workflow
The security-workflows repo only ships one combined workflow (security-scan.yml
running semgrep + trivy in parallel), not separate semgrep.yml/trivy.yml.
2026-05-09 17:35:09 +02:00

21 lines
601 B
YAML

name: Security
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 4 * * 1' # Mondays 04:00 UTC
# Reusable workflow lives in JonKazama-Hellion/security-workflows.
# It runs Semgrep SAST + Trivy filesystem scan in parallel.
# Inputs (all optional): severity, semgrep-config, semgrep-exclude-rules.
jobs:
scan:
uses: JonKazama-Hellion/security-workflows/.gitea/workflows/security-scan.yml@main
# Example overrides if you need them:
# with:
# severity: 'CRITICAL'
# semgrep-exclude-rules: 'csharp.lang.security.sqli.csharp-sqli'