From c1709688fde76a6c78c95a3fcc87ade5cad0690d Mon Sep 17 00:00:00 2001 From: Adrien Di Pasquale Date: Mon, 30 Dec 2024 10:30:53 +0100 Subject: [PATCH] suppression GH Action semgrep analysis --- .github/workflows/semgrep-analysis.yml | 32 -------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/semgrep-analysis.yml diff --git a/.github/workflows/semgrep-analysis.yml b/.github/workflows/semgrep-analysis.yml deleted file mode 100644 index c8794228..00000000 --- a/.github/workflows/semgrep-analysis.yml +++ /dev/null @@ -1,32 +0,0 @@ -# See https://semgrep.dev/docs ---- -name: Semgrep -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - - cron: '30 21 * * 1' - -jobs: - semgrep: - name: Scan - runs-on: ubuntu-latest - steps: - # Checkout project source - - uses: actions/checkout@v2 - - # Scan code using project's configuration on https://semgrep.dev/manage - - uses: returntocorp/semgrep-action@v1 - with: - publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} - generateSarif: "1" - config: "p/ruby" - - # Upload SARIF file generated in previous step - - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v1 - with: - sarif_file: semgrep.sarif - if: always()