From d6b4d206d837d951a1ec8a1468a58963a99d9ea8 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Tue, 24 Dec 2024 21:04:55 -0800 Subject: [PATCH] Remove duplicate codeql --- .github/workflows/codeql.yml | 41 ------------------------------------ 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 02b49db9cf..0000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: "CodeQL" - -# When to run the analysis -on: - pull_request: - branches: ["main"] # Run on PRs to main - schedule: - - cron: "17 10 * * 1" # Weekly scan for new vulnerabilities - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - # Permissions needed by CodeQL - permissions: - actions: read # Read workflow - contents: read # Read code - security-events: write # Write security alerts - - strategy: - fail-fast: false - matrix: - # Tell CodeQL what type of code to analyze - language: ["javascript-typescript"] - - steps: - # Get the code - - name: Checkout repository - uses: actions/checkout@v4 - - # Set up CodeQL tools - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - # Run the actual analysis - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}"