about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2022-09-20 08:02:36 +0900
committerTshepang Mbambo <tshepang@gmail.com>2022-09-22 10:48:08 +0200
commit88b498aa33e2d9f4856344530bae6d1c9237b76c (patch)
tree5e4d3cab0e20ac72da4f4b726edff5b7d69ccf6c /src/doc/rustc-dev-guide
parent39d2be681ebdede03d2409942a52e2eec6dd4160 (diff)
downloadrust-88b498aa33e2d9f4856344530bae6d1c9237b76c.tar.gz
rust-88b498aa33e2d9f4856344530bae6d1c9237b76c.zip
Remove unmaintained action
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/.github/workflows/ci.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/.github/workflows/ci.yml b/src/doc/rustc-dev-guide/.github/workflows/ci.yml
index 434e594a304..9395e9596bc 100644
--- a/src/doc/rustc-dev-guide/.github/workflows/ci.yml
+++ b/src/doc/rustc-dev-guide/.github/workflows/ci.yml
@@ -49,10 +49,9 @@ jobs:
 
       - name: Install latest nightly Rust toolchain
         if: steps.mdbook-cache.outputs.cache-hit != 'true'
-        uses: actions-rs/toolchain@v1
-        with:
-            toolchain: nightly
-            override: true
+        run: |
+          rustup update nightly
+          rustup override set nightly
 
       - name: Install Dependencies
         if: steps.mdbook-cache.outputs.cache-hit != 'true'