From 83080f53dd69066432e7395be64a4e8467cf91d4 Mon Sep 17 00:00:00 2001 From: Pierre Warnier Date: Tue, 24 Mar 2026 15:18:07 +0100 Subject: [PATCH] CI: upgrade cargo-deny-action to v2 for edition 2024 support The v1 action bundles an old Cargo that doesn't recognize edition 2024. v2 uses the host toolchain, so we install stable Rust first. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e101bb6..0a9692e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,4 +56,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: dtolnay/rust-toolchain@stable + - uses: EmbarkStudios/cargo-deny-action@v2