From 317ed623239815a7546843702818759c90ad2cf9 Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Tue, 3 Oct 2023 18:55:16 +0200 Subject: [PATCH] Update example workflow in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 517e0d4..0f0b076 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - 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@v3 + - uses: actions/checkout@v4 # Ensure rustfmt is installed and setup problem matcher - uses: actions-rust-lang/setup-rust-toolchain@v1 with: