From fd2478fbf0eb4ca9382053f3ce41f8da9cb2683f Mon Sep 17 00:00:00 2001 From: martinfrances107 Date: Wed, 3 Sep 2025 18:58:19 +0100 Subject: [PATCH] README should direct users to actions/checkout@5. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c7ca03..5422c43 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: cargo test --all-features @@ -30,7 +30,7 @@ jobs: name: cargo fmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # Ensure rustfmt is installed and setup problem matcher - uses: actions-rust-lang/setup-rust-toolchain@v1 with: