From b9051774159360deda75d2d9dfdc2b6992f58cf5 Mon Sep 17 00:00:00 2001 From: Stephan Creutz Date: Fri, 8 Nov 2024 20:40:24 +0100 Subject: [PATCH] Upgrade actions/checkout to v4 Fix the following Github actions warning: "The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2. 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 6fd73836..b65a5428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: emacs_version: [25, 26, 27, 28] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: CI env: VERSION: ${{ matrix.emacs_version }}