Skip to content

Commit c3545bd

Browse files
fix(codeql): analyse the languages this repository actually has (#41)
`codeql database finalize` was exiting **32** on every run: > CodeQL could not process any code written in JavaScript/TypeScript. The matrix asserted `javascript-typescript`; this repository's languages are `rust`. One `codeql.yml` was copied estate-wide with a hard-coded JS matrix — **82 repositories** carry it, and 17 of the 18 sampled have no JavaScript at all (Julia, Rust, Zig, Agda, Ada, Haskell, Elixir). **This is not only a failing check.** The crash uploads no SARIF, so a `code_scanning` ruleset rule requiring CodeQL waits forever on *"Code scanning is waiting for results from CodeQL"*. One fault, two symptoms — and relaxing the rule's thresholds could not have helped, because no results arrive at all. `actions` is kept (or added): it is valid in every repository, since every repository has workflow files, and it keeps this workflow producing a check and a SARIF upload even where CodeQL can analyse nothing else. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Signed-off-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
1 parent 0a432d0 commit c3545bd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
include:
31-
- language: javascript-typescript
31+
- language: actions
32+
build-mode: none
33+
- language: rust
3234
build-mode: none
3335
steps:
3436
- name: Checkout

0 commit comments

Comments
 (0)