From e97e2d8cc328f1b50210efc529dca0028893a2d9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 22 Aug 2025 18:20:49 -0700 Subject: [PATCH] Update actions/checkout@v4 -> v5 --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c593ab..a453f37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: rust: 1.0.0 timeout-minutes: 45 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ name: Run dtolnay/rust-toolchain${{contains(matrix.rust, ' ') && ' for ' || '@'}}${{matrix.rust}} id: toolchain diff --git a/README.md b/README.md index b2900d2..fc44f15 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable - run: cargo test --all-features ```