From 1e2b7e8dfd5e72387d114f32a6dc2f9a68b46fa5 Mon Sep 17 00:00:00 2001 From: Jeremy Meyer Date: Thu, 21 May 2026 11:47:07 -0700 Subject: [PATCH] chore: add OWASP.WTF security scan workflow --- .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..e43a942 --- /dev/null +++ b/.github/workflows/security-scan.yml @@ -0,0 +1,23 @@ +name: Security Scan + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + security-events: write + +jobs: + security: + name: OWASP.WTF + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: DecOperations/OWASP.WTF@main + with: + mode: scan + fail-on: high