ci: ignore new RUSTSEC advisories + regen root README#2202
Merged
Conversation
The Audit and READMEs jobs went red repo-wide on feat/train_encode_split (so on every PR against it): - audit: two advisories published since the ignore list was last updated — RUSTSEC-2026-0204 (crossbeam-epoch, transitive) and RUSTSEC-2025-0057 (fxhash, unmaintained). Both are transitive and not fixable from here, so ignore them alongside the existing three (rust/node/python workflows). - README: the root crate's lib.rs wrapped a sentence but README.md wasn't regenerated; `cargo readme` re-syncs it.
|
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Audit dependencies and READMEs up to date jobs are red repo-wide on
feat/train_encode_split— i.e. on every PR targeting it (#2190, #2194, #2201 …). Neither is caused by any of those PRs; both are drift on the base. This fixes both in one place.Audit
cargo audit -D warningsnow trips on two advisories published after the ignore list was last touched:crossbeam-epochinvalid pointer deref (transitive, via rayon et al.)fxhashunmaintainedBoth are transitive and not fixable from this repo, so they're added to the existing
--ignorelist (which already carries2024-0436,2025-0014,2025-0119) in therust,node, andpythonworkflows. NoCargo.lockchange.READMEs
The root crate's
lib.rswrapped a sentence across two lines butREADME.mdwasn't regenerated, socargo readmediff fails. RegeneratedREADME.md(root only;tk-encode/tk-trainalready match). Cosmetic — a line-wrap sync, no content change.Verified locally:
cargo audit … --ignore <all 5>exits 0, andcargo readme --project-root . | diff - README.mdis empty.