From 16c5d422181459997176fee524720273e47c0861 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Mon, 29 Jan 2024 15:20:27 -0500 Subject: [PATCH] CI: Update first-party GitHub Actions from v2 to v4 GitHub Actions has deprecated Actions based on node16. The v4 actions are based on node20. Replace first-party v2 actions with their v4 counterparts. See: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/clang-format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 137e1e015..5baf0ddf8 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: submodules: 'recursive'