Skip to content

Commit 4d1436f

Browse files
hyperpolymathclaude
andcommitted
fix(ci): CodeQL use 'actions' extractor, not javascript-typescript
The repo has no JS/TS source, so the `javascript-typescript` matrix produced "no source code seen" failures on every CodeQL run, blocking all PRs (incl. the rustls-webpki CVE bump in this PR). Switch to the `actions` extractor (scans workflow files, which every repo has), matching the canonical 007 codeql.yml. Per hypatia rule `codeql_language_matrix_mismatch`. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 1a791a2 commit 4d1436f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/codeql.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
include:
33-
- language: javascript-typescript
33+
# Repo has no JS/TS source — `javascript-typescript` matrix
34+
# produced "no source files" failures on every CodeQL run.
35+
# Switch to `actions` extractor (scans workflow files which
36+
# every repo has). Per hypatia rule `codeql_language_matrix_mismatch`.
37+
- language: actions
3438
build-mode: none
3539

3640
steps:

0 commit comments

Comments
 (0)