fix(deny): re-add the rustls-pemfile unmaintained ignore - #411
Merged
Conversation
RUSTSEC-2025-0134 resurfaces under --all-features: axum-server and rustls-acme pull rustls-pemfile 2.2.0, flagged unmaintained with no safe upgrade. The ignore was dropped as stale, but deny.toml is not in the CI path filters, so the removal was never actually verified. Re-adding it keeps cargo-deny green for the next rust-touching PR.
Destynova2
enabled auto-merge
June 12, 2026 21:25
Destynova2
added a commit
that referenced
this pull request
Jun 13, 2026
RUSTSEC-2026-0173 (proc-macro-error2 unmaintained, 2026-06-07) was added to deny.toml in #411 but not to .cargo/audit.toml, so the two advisory configs drifted. cargo audit finds 0 vulnerabilities, but the unmaintained warning makes rustsec/audit-check try to post a check-run annotation, which the hardened `permissions: read-all` token cannot — failing the Security Audit job (and Required checks) on every push to main. Sync the ignore list to clear it.
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.
RUSTSEC-2025-0134 resurfaces under
--all-features:axum-serverandrustls-acmepullrustls-pemfile2.2.0, flagged unmaintained with no safe upgrade available.The ignore was dropped as stale in #409, but
deny.tomlis not covered by the CI path filters, so the Cargo Deny job was skipped on that PR and the removal was never actually verified. Verified locally on the current tree:cargo deny --all-features check advisorieswithout the ignore →advisories FAILED(rustls-pemfile 2.2.0 via axum-server / rustls-acme)advisories okRe-adding it keeps cargo-deny green for the next rust-touching PR, and aligns
deny.tomlwith #410, clearing its merge conflict.