From 8a8c0e5440e28d709d98684234bf99e9fba6de85 Mon Sep 17 00:00:00 2001 From: Samuel Bland Date: Tue, 25 Aug 2026 15:48:47 +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 | 21 --------------------- 1 file changed, 21 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 81630f0..0000000 --- a/.github/workflows/snyk.yml +++ /dev/null @@ -1,21 +0,0 @@ - -name: Snyk - -on: - push: - branches: [ master ] - -jobs: - security: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/golang@master - with: - command: monitor - args: --prune-repeated-subdependencies --project-name=sql-runner - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}