From 57c2326574d939c7b8a1aab2e7c35bbba480e771 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Fri, 17 Jan 2025 01:40:54 -0800 Subject: [PATCH] ci: run cargo-deny directly rather than via action (#1621) Improves CI time --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62a9bfd2..f97ea623 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: EmbarkStudios/cargo-deny-action@v2 + - uses: dtolnay/rust-toolchain@stable + - uses: taiki-e/install-action@cargo-deny + - run: cargo deny --log-level info --all-features check # Check for any unused dependencies in the codebase. # See