From 67807df8bfa34c21bccca4d1d98856ae52cd7869 Mon Sep 17 00:00:00 2001 From: Eduardo Boronat Date: Wed, 23 Jul 2025 10:46:43 +0000 Subject: [PATCH] chore(ci): Remove Semgrep GHA Workflow --- .github/workflows/semgrep.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/semgrep.yml diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml deleted file mode 100644 index c96c45c..0000000 --- a/.github/workflows/semgrep.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: "Semgrep" - -on: - merge_group: - push: - branches: - - master - pull_request: - types: - - opened - - synchronize - schedule: - - cron: "30 0 1,15 * *" - -jobs: - run: - if: github.actor != 'dependabot[bot]' - - name: "Run" - runs-on: ubuntu-latest - - container: - image: returntocorp/semgrep - - steps: - - uses: actions/checkout@v3 - - - run: semgrep ci - env: - SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}