From 3fac32ae5400007c2eb8935be7a59fafcf007e13 Mon Sep 17 00:00:00 2001 From: Mats Lidell Date: Tue, 24 Mar 2026 23:34:24 +0100 Subject: [PATCH] Use actions that run Node24 Node20 is deprecated for GitHub Actions. For more info see https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ * .github/workflows/docs.yml (jobs): * .github/workflows/main.yml (jobs): Use checkout@v5. --- .github/workflows/docs.yml | 2 +- .github/workflows/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5bcfa0c5..5ea5a3b1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: image: ubuntu:24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 48d97c27..5b585ad9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: container: silex/emacs:${{ matrix.version }}-ci steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Clean run: make clean