From 779800b7bfe17c172fd740bed75fb3a68fd75433 Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Wed, 8 May 2024 00:04:10 +0900 Subject: [PATCH 1/2] ci: fix CI falure on Windows --- .github/actions/setup/action.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index ea0fab2b2..0cfc11932 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -14,6 +14,8 @@ inputs: runs: using: composite steps: + - name: Should not update rustup + run: rustup set auto-self-update disable - name: Update Rust if: inputs.rust-nightly != 'true' && env.LIBR_POLARS_FEATURES != 'full_features' shell: bash From 54dabf16026339a992f5793e0de8fddf6c74a85b Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Wed, 8 May 2024 00:31:55 +0900 Subject: [PATCH 2/2] ci: shell is needed --- .github/actions/setup/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 0cfc11932..b88c74d40 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -15,6 +15,7 @@ runs: using: composite steps: - name: Should not update rustup + shell: bash run: rustup set auto-self-update disable - name: Update Rust if: inputs.rust-nightly != 'true' && env.LIBR_POLARS_FEATURES != 'full_features'