From 2340dd3121f0317c5797964bc4fc5996610f663f Mon Sep 17 00:00:00 2001 From: MMK21Hub <50421330+MMK21Hub@users.noreply.github.com> Date: Sat, 11 May 2024 18:38:35 +0100 Subject: [PATCH] CI: Update `actions/checkout` to v4 This means that the workflow will now use Node.JS 20 (instead of Node.JS 16) See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/build-each-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-each-commit.yml b/.github/workflows/build-each-commit.yml index 4b34795..b987651 100644 --- a/.github/workflows/build-each-commit.yml +++ b/.github/workflows/build-each-commit.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Enable Corepack run: corepack enable - name: Install dependencies using yarn