From 9b4557f1978f573f6687f66ad83d36b6bd95a813 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Sat, 9 May 2026 11:28:09 +0200 Subject: [PATCH] chore: add reusable security scan workflow Calls JonKazama-Hellion/security-workflows for Semgrep SAST + Trivy filesystem vulnerability scan. Runs on push to main/master, on every PR, and weekly Monday 06:00 UTC. --- .gitea/workflows/security.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/security.yml diff --git a/.gitea/workflows/security.yml b/.gitea/workflows/security.yml new file mode 100644 index 0000000..839de66 --- /dev/null +++ b/.gitea/workflows/security.yml @@ -0,0 +1,13 @@ +name: Security +on: + push: + branches: [main, master] + pull_request: + schedule: + - cron: '0 6 * * 1' + workflow_dispatch: + +jobs: + scan: + uses: JonKazama-Hellion/security-workflows/.gitea/workflows/security-scan.yml@main +