Skip to content

Commit a753553

Browse files
committed
chore(ci): switch to a custom fork of actions-rs/toolchain
This fork includes [actions-rs/toolchain#209][1], the PR that would add support for TOML-style rustup toolchain files but has been left unmerged for seven months. [1]: actions-rs/toolchain#209
1 parent 79e9332 commit a753553

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Install Rust
17-
uses: actions-rs/toolchain@v1
17+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
18+
uses: r3-os/actions-rust-toolchain@patch/pr-209
1819
with:
1920
profile: minimal
2021
components: clippy, rustfmt
@@ -82,7 +83,8 @@ jobs:
8283
uses: actions/checkout@v1
8384

8485
- name: Install Rust
85-
uses: actions-rs/toolchain@v1
86+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
87+
uses: r3-os/actions-rust-toolchain@patch/pr-209
8688
with:
8789
profile: minimal
8890

@@ -123,7 +125,8 @@ jobs:
123125
uses: actions/checkout@v1
124126

125127
- name: Install Rust
126-
uses: actions-rs/toolchain@v1
128+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
129+
uses: r3-os/actions-rust-toolchain@patch/pr-209
127130
with:
128131
profile: minimal
129132

@@ -183,7 +186,8 @@ jobs:
183186
uses: actions/checkout@v1
184187

185188
- name: Install Rust
186-
uses: actions-rs/toolchain@v1
189+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
190+
uses: r3-os/actions-rust-toolchain@patch/pr-209
187191
with:
188192
profile: minimal
189193

@@ -258,7 +262,8 @@ jobs:
258262
uses: actions/checkout@v2
259263

260264
- name: Install Rust
261-
uses: actions-rs/toolchain@v1
265+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
266+
uses: r3-os/actions-rust-toolchain@patch/pr-209
262267
with:
263268
profile: minimal
264269
components: rust-src
@@ -323,7 +328,8 @@ jobs:
323328
uses: actions/checkout@v2
324329

325330
- name: Install Rust
326-
uses: actions-rs/toolchain@v1
331+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
332+
uses: r3-os/actions-rust-toolchain@patch/pr-209
327333
with:
328334
profile: minimal
329335
components: rust-src

.github/workflows/doc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
uses: actions/checkout@v2
1313

1414
- name: Install Rust
15-
uses: actions-rs/toolchain@v1
15+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
16+
uses: r3-os/actions-rust-toolchain@patch/pr-209
1617
with:
1718
profile: minimal
1819

.github/workflows/report-size.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
uses: actions/checkout@v2
3636

3737
- name: Install Rust
38-
uses: actions-rs/toolchain@v1
38+
# FIXME: Switch back when actions-rs/toolchain#209 is merged
39+
uses: r3-os/actions-rust-toolchain@patch/pr-209
3940
with:
4041
profile: minimal
4142
components: rust-src

0 commit comments

Comments
 (0)