From 283c6d2c0e6cc00dab8740f5566c6268126b253e Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 8 Jul 2024 14:01:03 +0800 Subject: [PATCH] ci: use taiki-e/checkout-action@v1 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0902a0a..290ebc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: if: github.event_name != 'pull_request' timeout-minutes: 45 steps: - - uses: actions/checkout@v3 + - uses: taiki-e/checkout-action@v1 - uses: dtolnay/rust-toolchain@stable - id: ucd-generate run: echo "version=$(grep 'ucd-generate [0-9]\+\.[0-9]\+\.[0-9]\+' tests/tables/tables.rs --only-matching)" >> $GITHUB_OUTPUT @@ -47,7 +47,7 @@ jobs: rust: [nightly, beta, stable, 1.74.0] timeout-minutes: 45 steps: - - uses: actions/checkout@v3 + - uses: taiki-e/checkout-action@v1 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{matrix.rust}} @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 45 steps: - - uses: actions/checkout@v3 + - uses: taiki-e/checkout-action@v1 - uses: dtolnay/rust-toolchain@1.31.0 - run: cargo check --manifest-path tests/crate/Cargo.toml @@ -74,7 +74,7 @@ jobs: if: github.event_name != 'pull_request' timeout-minutes: 45 steps: - - uses: actions/checkout@v3 + - uses: taiki-e/checkout-action@v1 - uses: dtolnay/rust-toolchain@clippy - run: cargo clippy --tests --benches --workspace -- -Dclippy::all -Dclippy::pedantic @@ -84,7 +84,7 @@ jobs: if: github.event_name != 'pull_request' timeout-minutes: 45 steps: - - uses: actions/checkout@v3 + - uses: taiki-e/checkout-action@v1 - uses: dtolnay/install@cargo-outdated # - run: cargo outdated --workspace --exit-code 1 # https://github.com/kbknapp/cargo-outdated/issues/389 - run: cargo outdated --exit-code 1