Skip to content

Commit cd1e2f8

Browse files
committed
Remove unmaintained action
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
1 parent acdc58b commit cd1e2f8

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929

3030
- name: Install latest stable Rust toolchain
3131
if: steps.mdbook-cache.outputs.cache-hit != 'true'
32-
uses: actions-rs/toolchain@v1
33-
with:
34-
toolchain: stable
35-
override: true
32+
run: |
33+
rustup update stable
34+
rustup override set stable
3635
3736
- name: Install Dependencies
3837
if: steps.mdbook-cache.outputs.cache-hit != 'true'
@@ -67,10 +66,9 @@ jobs:
6766

6867
- name: Install latest stable Rust toolchain
6968
if: steps.mdbook-cache.outputs.cache-hit != 'true'
70-
uses: actions-rs/toolchain@v1
71-
with:
72-
toolchain: stable
73-
override: true
69+
run: |
70+
rustup update stable
71+
rustup override set stable
7472
7573
- name: Install Dependencies
7674
if: steps.mdbook-cache.outputs.cache-hit != 'true'

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929

3030
- name: Install latest stable Rust toolchain
3131
if: steps.mdbook-cache.outputs.cache-hit != 'true'
32-
uses: actions-rs/toolchain@v1
33-
with:
34-
toolchain: stable
35-
override: true
32+
run: |
33+
rustup update stable
34+
rustup override set stable
3635
3736
- name: Install Dependencies
3837
if: steps.mdbook-cache.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)