From 4c40fee3e54854f03b87390912e562fccb08e9c6 Mon Sep 17 00:00:00 2001 From: Chase Higgins Date: Tue, 6 Feb 2024 12:54:07 +0000 Subject: [PATCH] removes snyk cli scan - this project will now use scm integration (#241) --- .github/workflows/snyk-scan.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/snyk-scan.yml diff --git a/.github/workflows/snyk-scan.yml b/.github/workflows/snyk-scan.yml deleted file mode 100644 index 3130e8f..0000000 --- a/.github/workflows/snyk-scan.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: snyk scanning - -on: - push: - branches: ["master", "v2*"] - schedule: - - cron: "0 0 * * *" - - workflow_dispatch: - -jobs: - snyk: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: install snyk - run: npm install -g snyk - - - name: install deps and scan - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - run: | - snyk monitor --project-name=kminion --remote-repo=redpanda-data/kminion --target-reference=${GITHUB_REF#refs/heads/} . - shell: bash \ No newline at end of file