From 40655fbff0f507cd87e2451aa7a0ce36944e43d8 Mon Sep 17 00:00:00 2001 From: Benjamin Leggett Date: Tue, 16 Jun 2026 11:57:56 -0400 Subject: [PATCH] Fix issues where cargo make isn't restored --- .github/workflows/ci-code.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-code.yaml b/.github/workflows/ci-code.yaml index bd76046..939b15e 100644 --- a/.github/workflows/ci-code.yaml +++ b/.github/workflows/ci-code.yaml @@ -50,6 +50,13 @@ jobs: env: CARGO_MAKE_VERSION: ${{ steps.get-version.outputs.cargo_make_version }} + - name: Save cargo-make binary + if: steps.cache-cargo-make.outputs.cache-hit != 'true' + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + with: + path: ~/.cargo/bin/cargo-make + key: ${{ runner.os }}-cargo-make-${{ steps.get-version.outputs.cargo_make_version }} + - name: Verify cargo-make run: cargo make --version