Commit 178786e
ci: green the two red checks (CodeQL→Rust, PR fuzzing→cargo-fuzz) + pin lint toolchain (#89)
Fixes the two long-standing red CI checks on `main` and locks the lint
toolchain. **No application code changes** — all three are
`.github/workflows` fixes.
## 1. CodeQL → analyze Rust
The matrix only scanned `javascript-typescript`, but the repo has **zero
JS/TS files**, so CodeQL returned a `configuration error` on every run.
Switched to `language: rust` (build-mode `none`) — actual security
coverage instead of a guaranteed failure.
## 2. PR fuzzing → native cargo-fuzz
The `PR (address)` check was ClusterFuzzLite, whose `build_fuzzers`
action **hardcodes `.clusterfuzzlite/Dockerfile`**. This repo is
**Containerfile-only** (enforced by `contractile.just` /
`Trustfile.a2ml`), so it failed with `open Dockerfile: no such file or
directory`. Replaced with a native `cargo-fuzz` job that runs the
existing `fuzz/fuzz_targets/fuzz_input.rs` target directly on the runner
— **no container, no Dockerfile, no podman**. (`cflite_pr.yml` removed,
`fuzz-pr.yml` added; the `PR` job + `address` matrix names are preserved
so the check name is unchanged. The `.clusterfuzzlite/` harness is left
in place for the scheduled batch workflow.)
## 3. Pin the Build Check toolchain
`dtolnay/rust-toolchain` pinned to `1.96.0` (kept in sync with
`rust-toolchain.toml`) so a floating `stable` can't reintroduce the
fmt/clippy skew that previously reddened `main`.
## Verification note
CodeQL-Rust and cargo-fuzz can only be exercised in CI, not locally — so
this PR's own checks are the validation. Will iterate if either needs
adjustment.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
https://claude.ai/code/session_013wg3Mtq2QFhYi4XVw1Z6z7
---
_Generated by [Claude
Code](https://claude.ai/code/session_013wg3Mtq2QFhYi4XVw1Z6z7)_
Co-authored-by: Claude <noreply@anthropic.com>1 parent d797723 commit 178786e
4 files changed
Lines changed: 49 additions & 30 deletions
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
58 | 63 | | |
59 | 64 | | |
60 | 65 | | |
| |||
0 commit comments