From bac1cfd88092cff28c69f7d11cf4fadd395ec243 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 06:59:10 +0000 Subject: [PATCH] ci(codeql): scan actions extractor, not absent javascript-typescript This is a Julia repo with no JS/TS source, so the CodeQL analyze (javascript-typescript) job found no code and failed. Switch the matrix to language: actions (scans the GitHub Actions workflow files, present in every repo) -- matching the rest of the estate and closing the Hypatia codeql_language_matrix_mismatch finding. https://claude.ai/code/session_01PWMMxryCcPrAjJ8tuGvygG --- .github/workflows/codeql.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d9306bb..2bf8c4a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,10 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript + # Repo source is not JS/TS; scan workflow files via the actions + # extractor (present in every repo). Closes the Hypatia + # codeql_language_matrix_mismatch finding. + - language: actions build-mode: none steps: - name: Checkout