From 68bc7eb2ff0d0ae8f338c89ef6baf1f8ca199e39 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 25 Sep 2023 13:16:13 +0000 Subject: [PATCH] actions: Use latest cargo-make This updates the version of cargo-make used in the GitHub Action runs. This is only part of the workflow since things are delegated off to twoliter and the SDK, but we should keep the initial `cargo make` calls updated. Signed-off-by: Sean McGinnis --- .github/actions/setup-node/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index 666e9cc6a0a..d8f9f192579 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -25,8 +25,8 @@ runs: path: | .cargo key: ${{ hashFiles('.github/workflows/cache.yml') }}-${{ runner.os }}-${{ env.OS_ARCH }}-${{ hashFiles('sources/Cargo.lock') }} - - run: cargo install --locked --version 0.36.0 cargo-make + - run: cargo install cargo-make shell: bash - if: ${{ inputs.perform-cache-cleanup }} - run: cargo install --locked --version 0.8.3 --no-default-features --features ci-autoclean cargo-cache + run: cargo install --no-default-features --features ci-autoclean cargo-cache shell: bash