From 0daf58ced4f3313f23015f5bb2a954b9e7530b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= <44257381+JSorngard@users.noreply.github.com> Date: Mon, 30 Dec 2024 10:23:49 +0100 Subject: [PATCH] Use `taiki_e/install_action` to install dev tools in CI --- .github/workflows/rust.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d99f034..497d298 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,10 +24,9 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@v1.10.17 - - name: Install cargo-all-features - run: cargo binstall cargo-all-features + - uses: taiki-e/install-action@v2 + with: + tool: cargo-all-features - name: Check run: cargo check-all-features @@ -44,10 +43,9 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@v1.10.17 - - name: Install cargo-all-features - run: cargo binstall cargo-all-features + - uses: taiki-e/install-action@v2 + with: + tool: cargo-all-features - name: Test run: cargo test-all-features