Unblock CI by temporarily ignoring hickory-proto audit failures (#9257)

Two audit failures for `hickory-proto` which is used upstream in `libp2p-dns` and `libp2p-mdns`

- https://rustsec.org/advisories/RUSTSEC-2026-0118.html
- https://rustsec.org/advisories/RUSTSEC-2026-0119.html

Tracking Issue: https://github.com/sigp/lighthouse/issues/9258


  Since RUSTSEC-2026-0118 does not even have any non-patched versions available and RUSTSEC-2026-0119 requires a major version bump I think we would need to wait on a release from libp2p in both cases.
So for now, add an ignore for each so we can at least unblock CI


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2026-05-03 15:10:19 +04:00
committed by GitHub
parent 330348ea14
commit ee61aee659

View File

@@ -330,7 +330,7 @@ install-audit:
cargo install --force cargo-audit cargo install --force cargo-audit
audit-CI: audit-CI:
cargo audit --ignore RUSTSEC-2026-0049 --ignore RUSTSEC-2026-0098 --ignore RUSTSEC-2026-0099 --ignore RUSTSEC-2026-0104 cargo audit --ignore RUSTSEC-2026-0049 --ignore RUSTSEC-2026-0098 --ignore RUSTSEC-2026-0099 --ignore RUSTSEC-2026-0104 --ignore RUSTSEC-2026-0118 --ignore RUSTSEC-2026-0119
# Runs cargo deny (check for banned crates, duplicate versions, and source restrictions) # Runs cargo deny (check for banned crates, duplicate versions, and source restrictions)
deny: install-deny deny-CI deny: install-deny deny-CI