From 7f7260c741709a20d1c520000dd88dcc894381ba Mon Sep 17 00:00:00 2001 From: Yuyuan Yuan Date: Wed, 15 May 2024 15:59:13 +0800 Subject: [PATCH] ci: speedup the cargo deny installation (#1027) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ef3710bd0..07307e160e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,8 +44,8 @@ jobs: - name: Update Stable Rust toolchain run: rustup update stable - - name: Install dependencies - run: cargo +stable install cargo-deny --locked + - name: Install latest cargo-deny + uses: taiki-e/install-action@cargo-deny - name: Code format check run: cargo fmt --check