From 0b1efabc08b657293548b77fb76cc02d26091c7e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 20 Nov 2025 10:02:43 -0800 Subject: [PATCH] Update actions/checkout@v5 -> v6 --- .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 7328a7c..ff35834 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@v5 + - uses: actions/checkout@v6 - uses: ./ name: Run dtolnay/rust-toolchain${{contains(matrix.rust, ' ') && ' for ' || '@'}}${{matrix.rust}} id: toolchain diff --git a/README.md b/README.md index fc44f15..5a33a60 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable - run: cargo test --all-features ```