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