From 4545eb7e45315a19086704a5d04be8e6547e20d7 Mon Sep 17 00:00:00 2001 From: Florian Wathling Date: Sat, 9 May 2026 17:30:58 +0200 Subject: [PATCH] Fix reusable workflow owner: JonKazama-Hellion not Hellion-Forge The security-workflows repo lives under the personal account, not the Hellion-Forge org. --- .gitea/workflows/security.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/security.yml b/.gitea/workflows/security.yml index 9854461..165d265 100644 --- a/.gitea/workflows/security.yml +++ b/.gitea/workflows/security.yml @@ -8,11 +8,13 @@ on: 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: Hellion-Forge/security-workflows/.gitea/workflows/semgrep.yml@main + 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: Hellion-Forge/security-workflows/.gitea/workflows/trivy.yml@main + uses: JonKazama-Hellion/security-workflows/.gitea/workflows/trivy.yml@main