From 834df3bee5e4d23c632bc0b56a562e6b975d2656 Mon Sep 17 00:00:00 2001 From: Pavel Loparev Date: Fri, 17 Jul 2026 11:37:18 +0300 Subject: [PATCH] Fix Publish Package workflow: bump Node to 24 for npm@latest compat npm's latest major release now requires Node ^22.22.2 || ^24.15.0 || >=26.0.0, but the workflow pinned Node 20 while its "Update npm" step installs npm@latest unconditionally - EBADENGINE failure before npm ci even runs. Bumps node-version to 24 to match. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b4a9de6..37eb546 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '24' registry-url: 'https://registry.npmjs.org' # Ensure npm 11.5.1 or later is installed