Files
forge-tool-template/.gitea/workflows/security.yml
T
JonKazama-Hellion 4545eb7e45
Security / semgrep (push) Failing after 1s
Security / trivy (push) Failing after 0s
Fix reusable workflow owner: JonKazama-Hellion not Hellion-Forge
The security-workflows repo lives under the personal account, not the
Hellion-Forge org.
2026-05-09 17:30:58 +02:00

21 lines
616 B
YAML

name: Security
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 4 * * 1' # Mondays 04:00 UTC
# Reusable workflows live in JonKazama-Hellion/security-workflows
# (the security-workflows repo is in the personal account, not in either org).
jobs:
semgrep:
uses: JonKazama-Hellion/security-workflows/.gitea/workflows/semgrep.yml@main
# If you need to exclude specific rules or paths, drop a .semgrep-exclude.yml
# at the repo root. The reusable workflow honors it.
trivy:
uses: JonKazama-Hellion/security-workflows/.gitea/workflows/trivy.yml@main