From e9a5c1832628f5d543b6fb61523fd1a0292e06c4 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 24 Apr 2022 18:30:51 -0700 Subject: [PATCH] Update example workflow in readme to actions/checkout@v3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33192d0..1152e65 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable - run: cargo test --all-features ```