Skip to content

Commit fc98fcc

Browse files
committed
disable self-update on windows
1 parent f5a17cf commit fc98fcc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/setup-rust/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ inputs:
1515
runs:
1616
using: composite
1717
steps:
18+
# Work around for sporadic issues with rustup self-update on windows
19+
- run: rustup set auto-self-update disable
20+
if: contains(runner.os, 'windows')
21+
shell: bash
1822
- name: Install Rust toolchain
1923
uses: actions-rs/toolchain@v1
2024
with:

0 commit comments

Comments
 (0)