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