From c958e67c2ed21b0359c80a8e8588849e2d7ecdb6 Mon Sep 17 00:00:00 2001 From: NeuroKoder3 Date: Wed, 10 Jun 2026 21:31:42 -0500 Subject: [PATCH] ci: fix CodeQL job name to match required status check in ruleset Co-authored-by: Cursor --- .github/workflows/codeql.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 726e70b..f75b49d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,12 +16,14 @@ permissions: jobs: analyze: - name: Analyze + name: Analyze (${{ matrix.language }}) runs-on: ubuntu-latest timeout-minutes: 60 strategy: fail-fast: false + matrix: + language: ['javascript-typescript'] steps: - name: Checkout repository @@ -30,12 +32,12 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: - languages: javascript-typescript + languages: ${{ matrix.language }} build-mode: none queries: +security-extended - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: - category: "/language:javascript-typescript" + category: "/language:${{ matrix.language }}" upload: always