From f0327f9b5238b59b0c65c81a1c6c14dcce01576d Mon Sep 17 00:00:00 2001 From: Samuel Bland Date: Tue, 25 Aug 2026 16:16:02 +0100 Subject: [PATCH] chore(ci): remove Snyk workflow Snyk is being decommissioned company-wide under ITS-2185. Wiz Code replaces it for dependency and container scanning. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/snyk.yml | 31 ------------------------------- 1 file changed, 31 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 753187e98..000000000 --- a/.github/workflows/snyk.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Snyk -on: - push: - branches: [master] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Use Node.js 18 - uses: actions/setup-node@v3 - with: - node-version: 22 - - - name: pnpm cache - uses: actions/cache@v3 - with: - path: ./common/temp/pnpm-store - key: ${{ runner.os }}-pnpm-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }} - restore-keys: ${{ runner.os }}-pnpm- - - - name: Install - run: node common/scripts/install-run-rush.js install - - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/node@master - with: - command: monitor - args: --all-projects --exclude=common - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}