From 6303c282188603671b4d968fe7d2461e049dc196 Mon Sep 17 00:00:00 2001 From: man0s <95379755+losman0s@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:46:30 +0800 Subject: [PATCH] ci: bump CI cargo version --- .github/actions/setup-common/action.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-common/action.yaml b/.github/actions/setup-common/action.yaml index 0820ddd2..16d9049a 100644 --- a/.github/actions/setup-common/action.yaml +++ b/.github/actions/setup-common/action.yaml @@ -3,7 +3,6 @@ description: "Setup common" env: CARGO_TERM_COLOR: always CARGO_BUILD_TARGET: x86_64-unknown-linux-gnu - RUST_TOOLCHAIN: 1.66.1 runs: using: "composite" steps: @@ -14,11 +13,13 @@ runs: - run: | echo "ANCHOR_VERSION=0.28.0" >> $GITHUB_ENV echo "ANCHOR_SHA=e1afcbf71e0f2e10fae14525934a6a68479167b9" >> $GITHUB_ENV + echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV + echo "CARGO_BUILD_TARGET=x86_64-unknown-linux-gnu" >> $GITHUB_ENV shell: bash - uses: actions-rs/toolchain@v1 name: Install minimal rust toolchain with clippy and rustfmt with: profile: minimal - toolchain: 1.66.1 + toolchain: 1.71.0 components: rustfmt, clippy default: true