Skip to content

Commit 1c65d4b

Browse files
fix(codeql): analyse the languages this repository actually has (#29)
`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 `none`. 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 96d19f0 commit 1c65d4b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
include:
33-
- language: javascript-typescript
33+
- language: actions
3434
build-mode: none
35-
3635
steps:
3736
- name: Checkout
3837
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

0 commit comments

Comments
 (0)