From 47e5483ade1e5ac82a7a7735070fb052ac93b7a6 Mon Sep 17 00:00:00 2001 From: fettpl <38704082+fettpl@users.noreply.github.com> Date: Mon, 16 Feb 2026 17:50:17 +0100 Subject: [PATCH] ci: pin cargo-audit to 0.22.1 in dev CI Dockerfile Match the version pinned in the security workflow to ensure reproducible CI builds. Closes #362 Co-Authored-By: Claude Opus 4.6 --- dev/ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/ci/Dockerfile b/dev/ci/Dockerfile index 4e6adb8..fa23acf 100644 --- a/dev/ci/Dockerfile +++ b/dev/ci/Dockerfile @@ -14,7 +14,7 @@ RUN rustup toolchain install 1.92 --profile minimal --component rustfmt --compon RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/usr/local/cargo/git \ - cargo install --locked cargo-audit && \ + cargo install --locked cargo-audit --version 0.22.1 && \ cargo install --locked cargo-deny --version 0.18.5 WORKDIR /workspace