From f271868a9c47042ece8cc1416b1e0570bf7e6341 Mon Sep 17 00:00:00 2001 From: ducdetronquito Date: Tue, 14 Apr 2026 18:15:47 +0200 Subject: [PATCH] ci: Add security-scan workflow triggered once a week --- .github/workflows/security-scan.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/security-scan.yml diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml new file mode 100644 index 0000000..94e8c31 --- /dev/null +++ b/.github/workflows/security-scan.yml @@ -0,0 +1,23 @@ +name: Security scan + +on: + workflow_dispatch: + schedule: + - cron: "0 6 * * 0" # At 06AM on Sunday. + +permissions: + actions: read + checks: write + contents: read + id-token: write + packages: read + pull-requests: write + security-events: write + +jobs: + security_scan: + uses: ZeroGachis/.github/.github/workflows/security-scan.yml@v7 + secrets: inherit + with: + scan-image: false + scan-iac: false \ No newline at end of file