From f3cbe9618dc57a53d1cf728216951a1bc167c5d7 Mon Sep 17 00:00:00 2001 From: yogur Date: Mon, 16 Mar 2026 14:38:56 +0100 Subject: [PATCH] [skip ci] Remove deprecated security-analysis.yml workflow --- .github/workflows/security-analysis.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/security-analysis.yml diff --git a/.github/workflows/security-analysis.yml b/.github/workflows/security-analysis.yml deleted file mode 100644 index cea6cb8..0000000 --- a/.github/workflows/security-analysis.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: "Security Static Analysis" - -on: - pull_request: {} - workflow_dispatch: {} - push: - branches: - - main - - master - schedule: - - cron: '48 0 2 * *' -jobs: - scan: - name: "Security Static Analysis" - runs-on: ubuntu-latest - - # Skip any PR created by dependabot: - if: (github.actor != 'dependabot[bot]') - - steps: - - uses: scout24/s24-sast-action@v2 - with: - SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} -