From 4d97009606a6f372f91f0eeb68979aa7067a6910 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 21 Oct 2023 23:23:10 +0700 Subject: [PATCH] ci: Update to `actions/checkout@v4`. --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b9a84c49..1e29635d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -34,7 +34,7 @@ jobs: os: ubuntu steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup default ${{ matrix.channel }} - run: cargo build --all - run: cargo test --all @@ -51,20 +51,20 @@ jobs: #- x86_64-unknown-redox #- x86_64-linux-android steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup default nightly - run: rustup target add ${{ matrix.target }} - run: cargo build --workspace --target ${{ matrix.target }} --features nightly build_docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup default nightly - run: cargo doc --workspace --features arc_lock,serde,deadlock_detection --no-deps -p parking_lot -p parking_lot_core -p lock_api benchmark: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup default nightly - run: | cd benchmark