From 109a4ddd5b15c960ab98fe05776128d0b74c6990 Mon Sep 17 00:00:00 2001 From: Suyash Patil Date: Wed, 18 Jun 2025 16:28:16 +0530 Subject: [PATCH] chore: remove security scan workflow --- .github/workflows/security-scan.yml | 33 ----------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/security-scan.yml diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml deleted file mode 100644 index 7e40bb6..0000000 --- a/.github/workflows/security-scan.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Security Scan - -on: - pull_request: - types: [opened, synchronize, reopened] - branches: - - master - -jobs: - security-scan: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Get changed files - id: changed-files - uses: tj-actions/changed-files@v46 - with: - files: | - **/requirements.txt - - - name: Run Vulnerability Scanner - if: steps.changed-files.outputs.any_changed == 'true' - uses: fylein/vulnerability-scan-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - is_submodule: true - - - name: Skip Vulnerability Scanner - if: steps.changed-files.outputs.any_changed != 'true' - run: echo "No changes to dependency files, skipping vulnerability scan."