From 7757426bfe2a7d0e6ea98e50697e8f63a3bc5db5 Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Mon, 11 Nov 2024 11:01:26 -0800 Subject: [PATCH] chore(ci): switch to GitHub default CodeQL (remove our job) --- .github/workflows/analysis.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 60df3c0..9c21929 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -57,23 +57,6 @@ jobs: sonar_token: ${{ secrets[matrix.token] }} triggers: ('${{ matrix.dir }}/') - codeql: - name: CodeQL - if: ${{ ! github.event.pull_request.draft }} - needs: [tests] - runs-on: ubuntu-24.04 - timeout-minutes: 5 - steps: - - uses: actions/checkout@v4 - - uses: github/codeql-action/init@v3 - with: - languages: javascript - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:javascript" - # https://github.com/marketplace/actions/aqua-security-trivy trivy: name: Trivy Security Scan @@ -101,7 +84,7 @@ jobs: results: name: Analysis Results if: always() - needs: [tests, codeql] # Restore trivy when/if fixed + needs: [tests] # Restore trivy when/if fixed runs-on: ubuntu-24.04 steps: - if: contains(needs.*.result, 'failure')