From d90b6798131dbad8552dc2dbb343f7cd92e1ba85 Mon Sep 17 00:00:00 2001 From: Daniel Wright Date: Fri, 13 Mar 2026 13:31:08 +1000 Subject: [PATCH] chore: remove CodeQL workflow Ticket: DO-17966 --- .github/workflows/codeql.yaml | 49 ----------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/codeql.yaml diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml deleted file mode 100644 index b39471e619..0000000000 --- a/.github/workflows/codeql.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: 'Advanced Security CodeQL Scan' - -on: - push: - branches: ['master'] - pull_request: - branches: ['master'] - schedule: - - cron: '43 11 * * 5' - -permissions: - security-events: write - actions: read - contents: read - -jobs: - analyze: - name: Analyze - runs-on: 'ubuntu-latest' - timeout-minutes: 30 - - strategy: - fail-fast: false - matrix: - language: ['javascript-typescript'] - - steps: - - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - continue-on-error: true - with: - ref: ${{ github.sha }} - - - name: Initialize CodeQL - uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 - continue-on-error: true - with: - languages: ${{ matrix.language }} - queries: security-extended,security-and-quality - - - name: Autobuild - uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 - continue-on-error: true - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 - continue-on-error: true - with: - category: '/language:${{matrix.language}}'