From b360233a4c8cb06bb47b8d819e27baa426dd96c4 Mon Sep 17 00:00:00 2001 From: Tully Foote Date: Sun, 10 Nov 2024 04:21:39 -0800 Subject: [PATCH] Move to actions/checkout@v4 (#7) Avoid the warning `The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1fbbb1..adf2428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check formatting run: cargo fmt -- --check - name: Build