From 65ec66ad298f356c0d88e82349607f281b85c356 Mon Sep 17 00:00:00 2001 From: edeleon Date: Thu, 17 Oct 2024 17:09:40 -0700 Subject: [PATCH] remove snyk dependency scanning workflow --- .github/workflows/snyk_scan.yml | 27 --------------------------- 1 file changed, 27 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 7740a37..0000000 --- a/.github/workflows/snyk_scan.yml +++ /dev/null @@ -1,27 +0,0 @@ -# This workflow automates the process of identifying potential security vulnerabilities using Snyk. -# Dependency vulnerability scans will be run on a weekly schedule, but can also be triggered manually. -name: Snyk Vulnerability Scan -on: - workflow_dispatch: - schedule: - - cron: '00 15 * * 1' - push: - branches: - - main - -jobs: - security: - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # pin@v4 - with: - ref: 'main' - - - name: Run Snyk To Check For Vulnerabilities - uses: snyk/actions/gradle-jdk11@8349f9043a8b7f0f3ee8885bf28f0b388d2446e8 # pin@master - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - with: - command: monitor - args: --all-sub-projects --org=java-agent --configuration-matching='(^compileClasspath$)|(^runtimeClasspath$)'