From ea2bb68709e2beb67e3def17bf24b8c117d98c29 Mon Sep 17 00:00:00 2001 From: rzmk Date: Tue, 19 Sep 2023 00:03:49 -0400 Subject: [PATCH] ci: update deployment workflow checkout & rust install --- .github/workflows/deploy-docs.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 06aa48d..264b1ac 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -11,12 +11,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: Set up Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + - name: Install Rust (Stable) + run: curl https://sh.rustup.rs -sSf | sh -s -- -y - name: Build Documentation run: |