From 9abb07b69f965604b0da703bdba20a6400a308d4 Mon Sep 17 00:00:00 2001 From: Nish Sinha Date: Thu, 14 May 2026 14:31:32 -0400 Subject: [PATCH] Bump node from 20 to 24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node 20 is EOL (April 2026). Bumps the action runtime to node24 and .nvmrc to 24.13.0, matching upstream LTS. Also bumps the container-service beforeAll timeout from the default 5s to 30s — the hook does a real docker pull alpine and was racing the timeout on cold caches. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .nvmrc | 2 +- __tests__/container-service.test.ts | 2 +- action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.nvmrc b/.nvmrc index f3f52b42d..3fe3b1570 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.9.0 +24.13.0 diff --git a/__tests__/container-service.test.ts b/__tests__/container-service.test.ts index c29b89380..a300405a6 100644 --- a/__tests__/container-service.test.ts +++ b/__tests__/container-service.test.ts @@ -16,7 +16,7 @@ describe('ContainerService', () => { undefined, 'dependabot' ) - }) + }, 30000) describe('when a container runs successfully', () => { beforeEach(async () => { diff --git a/action.yml b/action.yml index 8b718e19d..656978b6c 100644 --- a/action.yml +++ b/action.yml @@ -2,6 +2,6 @@ name: 'Updater Action' description: 'Runs dependabot-updater in Actions' author: 'GitHub' runs: - using: 'node20' + using: 'node24' main: 'dist/main/index.js' post: 'dist/cleanup/index.js'