From 1fe3139713fb9e5f000af458154ddf634d6ebe64 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 11 Jul 2022 11:07:35 +0200 Subject: Update `actions/checkout` --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/main.yml') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24d61fa..9605d54 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: stable: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -19,7 +19,7 @@ jobs: - run: cargo doc --document-private-items --no-deps --release - run: echo 'Redirecting…

Redirecting…

Click here if you are not redirected.' > target/doc/index.html - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: target/doc -- cgit