We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a17cf commit fc98fccCopy full SHA for fc98fcc
.github/actions/setup-rust/action.yml
@@ -15,6 +15,10 @@ inputs:
15
runs:
16
using: composite
17
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
22
- name: Install Rust toolchain
23
uses: actions-rs/toolchain@v1
24
with:
0 commit comments