From ae87c9e98b8c78217c4ee1a7030a106defe7fd9f Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Thu, 21 Sep 2023 23:48:25 -0500 Subject: [PATCH] Delete snyk.yml --- .github/workflows/snyk.yml | 47 -------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/snyk.yml diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml deleted file mode 100644 index 344c6158..00000000 --- a/.github/workflows/snyk.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Snyk - -on: - merge_group: - workflow_dispatch: - pull_request_target: - types: - - opened - - synchronize - push: - branches: - - 5.x - schedule: - - cron: "30 0 1,15 * *" - -permissions: - contents: read - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/5.x' }} - -jobs: - authorize: - name: Authorize - environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }} - runs-on: ubuntu-latest - steps: - - run: true - - check: - needs: authorize - - name: Check for Vulnerabilities - runs-on: ubuntu-latest - - steps: - - if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group' - run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection. - - - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.sha || github.ref }} - - - uses: snyk/actions/php@b98d498629f1c368650224d6d212bf7dfa89e4bf # pin@0.4.0 - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}