From 07f52a91a63a0ed7cef6cb7401e25751de21efae Mon Sep 17 00:00:00 2001 From: ashsolei Date: Tue, 14 Apr 2026 13:54:07 +0200 Subject: [PATCH] ci: add security scan workflow Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/security-scan.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000000..4ffae89c43 --- /dev/null +++ b/.github/workflows/security-scan.yml @@ -0,0 +1,19 @@ +name: Security Scan + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '0 4 * * 1' + +permissions: + contents: read + security-events: write + +jobs: + security: + uses: Ai-road-4-You/enterprise-ci-cd/.github/workflows/security-scan.yml@v1 + secrets: inherit +