Skip to content

Commit 84b9b31

Browse files
fix(ci): repair CodeQL workflow (invalid YAML + drop beta-Rust leg) (#133)
## What `.github/workflows/codeql.yml` had **two** defects: 1. The `strategy:` block was indented 2 spaces — floating outside the `analyze` job — with a misaligned matrix leg, so the file **did not parse as YAML** (actionlint: *did not find expected '-' indicator*). CodeQL never ran. 2. The only matrix language was `rust` (beta CodeQL — cancels/hangs). ## Fix Re-indent the `strategy` block under the job; set the leg to `actions` (non-empty matrix, no zero-jobs `startup_failure`). ## Verification `actionlint`: no parse/syntax errors; `actions` leg present, no active `rust` leg. ## Context Estate-wide shared-fate: 13 repos carried the beta-Rust CodeQL leg. Reference: hyperpolymath/gitbot-fleet#375. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 3025478 commit 84b9b31

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
permissions:
2828
contents: read
2929
security-events: write
30-
strategy:
31-
fail-fast: false
32-
matrix:
33-
include:
34-
- language: rust
35-
build-mode: default
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
include:
34+
- language: actions
35+
build-mode: none
3636

3737
steps:
3838
- name: Checkout

0 commit comments

Comments
 (0)