File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 27
27
target/
28
28
key : ${{ runner.os }}-lint-${{ hashFiles('**/Cargo.lock') }}
29
29
30
+ - name : Setup | Disable rustup self-update
31
+ # workaround for: https://github.com/rust-lang/rustup/issues/3709
32
+ run : |
33
+ rustup set auto-self-update disable
34
+
30
35
- name : Setup | Toolchain (clippy)
31
36
run : |
32
37
rustup toolchain install stable --component clippy
61
66
target/
62
67
key : ${{ runner.os }}-check-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock') }}
63
68
69
+ - name : Setup | Disable rustup self-update
70
+ # workaround for: https://github.com/rust-lang/rustup/issues/3709
71
+ run : |
72
+ rustup set auto-self-update disable
73
+
64
74
- name : Setup | Rust
65
75
run : |
66
76
rustup toolchain install ${{ matrix.rust }}
96
106
- os : windows-latest
97
107
binPath : target/debug/trunk.exe
98
108
runs-on : ${{ matrix.os }}
109
+
99
110
steps :
100
111
- name : Setup | Checkout
101
112
uses : actions/checkout@v4
@@ -154,6 +165,11 @@ jobs:
154
165
- name : Setup | Checkout
155
166
uses : actions/checkout@v4
156
167
168
+ - name : Setup | Disable rustup self-update
169
+ # workaround for: https://github.com/rust-lang/rustup/issues/3709
170
+ run : |
171
+ rustup set auto-self-update disable
172
+
157
173
- name : Setup | Rust
158
174
run : |
159
175
rustup toolchain install stable --target wasm32-unknown-unknown
Original file line number Diff line number Diff line change 94
94
sudo apt-get update
95
95
sudo apt-get install -y ${{ matrix.dependencies }}
96
96
97
+ - name : Setup | Disable rustup self-update
98
+ # workaround for: https://github.com/rust-lang/rustup/issues/3709
99
+ run : |
100
+ rustup set auto-self-update disable
101
+
97
102
- name : Setup | Rust
98
103
run : |
99
104
rustup toolchain install stable --target ${{ matrix.target }} --profile minimal
You can’t perform that action at this time.
0 commit comments