From 2aa5276393b3d0999df4c87d3e64b9fdaaa8361f Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Sat, 16 Nov 2024 10:41:07 -0800 Subject: [PATCH] Update tools used in CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abd48595..5980a7cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,15 +60,15 @@ jobs: - name: Install cargo-deny if: steps.rust-cache.outputs.cache-hit != 'true' - run: rustup run --install 1.74 cargo install --force --version 0.14.17 cargo-deny --locked + run: cargo install --force --version 0.16.2 cargo-deny --locked - name: Install cargo-fuzz if: steps.rust-cache.outputs.cache-hit != 'true' - run: cargo install --force --version 0.11.0 cargo-fuzz --locked + run: cargo install --force --version 0.12.0 cargo-fuzz --locked - name: Install just if: steps.rust-cache.outputs.cache-hit != 'true' - run: cargo install --force --version 1.8.0 just --locked + run: cargo install --force --version 1.36.0 just --locked - name: Compile run: cargo build --all-targets --all-features