From c143d8e460b660babe080877a8261c8410676031 Mon Sep 17 00:00:00 2001 From: Dirk Stolle <striezel-dev@web.de> Date: Sun, 31 Dec 2023 22:46:13 +0100 Subject: [PATCH] Update GitHub Actions CI The following updates are performed: * update actions/checkout to v4 * replace unmaintained actions-rs/toolchain by dtolnay/rust-toolchain * replace unmaintained actions-rs/cargo by direct invocation of cargo --- .github/workflows/deploy-docs.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 5c67df4..c863e44 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -26,17 +26,12 @@ jobs: build_docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Pages uses: actions/configure-pages@v4 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + - uses: dtolnay/rust-toolchain@stable - name: Build docs - uses: actions-rs/cargo@v1 - with: - command: doc - args: --no-deps + run: cargo doc --no-deps - name: Fix docs run: | rm -rf ./docs