From 0765f1745c767b169318567bed979f003be8f571 Mon Sep 17 00:00:00 2001 From: "andrew.parkes" Date: Wed, 18 Dec 2024 08:59:05 +0000 Subject: [PATCH] Remove Snyk as it is being remove from Unity https://unity.slack.com/archives/C081RL023FC/p1734476841533459 --- .github/workflows/snyk-cron.yml | 18 ------------------ .github/workflows/snyk-pr.yml | 15 --------------- 2 files changed, 33 deletions(-) delete mode 100644 .github/workflows/snyk-cron.yml delete mode 100644 .github/workflows/snyk-pr.yml diff --git a/.github/workflows/snyk-cron.yml b/.github/workflows/snyk-cron.yml deleted file mode 100644 index f27e5e1..0000000 --- a/.github/workflows/snyk-cron.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: snyk-cron -on: - workflow_dispatch: {} - schedule: - # trigger on schedule once a day - - cron: "0 0 * * *" -jobs: - security: - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - uses: actions/checkout@v2 - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/golang@0.3.0 - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - with: - command: monitor \ No newline at end of file diff --git a/.github/workflows/snyk-pr.yml b/.github/workflows/snyk-pr.yml deleted file mode 100644 index 59c130b..0000000 --- a/.github/workflows/snyk-pr.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: snyk-pr -on: - pull_request: {} -jobs: - security: - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - uses: actions/checkout@v2 - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/golang@0.3.0 - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - with: - args: --fail-on=all \ No newline at end of file