From 800259ed4e3387e6bef09081cad543dfca6609a7 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Sun, 10 Dec 2023 12:52:30 +0100 Subject: [PATCH] ci: remove deprecated `actions-rs/toolchain` --- .github/workflows/build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a2ce29..13627d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,16 +28,10 @@ jobs: key: cache-stacks-node-${{ env.STACKS_BLOCKCHAIN_COMMIT }} - name: Install Rust - linux/amd64 if: steps.cache.outputs.cache-hit != 'true' - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: x86_64-unknown-linux-gnu + run: rustup toolchain install stable - name: Install Rust - linux/arm64 if: steps.cache.outputs.cache-hit != 'true' - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: aarch64-unknown-linux-gnu + run: rustup target add aarch64-unknown-linux-gnu - name: Install compilation tooling if: steps.cache.outputs.cache-hit != 'true' run: |