From 9dd9abe9acdcc5529e24bd1ff3bdbd8cb86a8e35 Mon Sep 17 00:00:00 2001 From: George Stagg Date: Wed, 29 Apr 2026 12:07:28 +0100 Subject: [PATCH] Workaround for nodejs/node issue 62425 --- .github/workflows/release-packages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index ab351344..caa58729 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -574,7 +574,10 @@ jobs: path: npm-tarball - name: Update npm for OIDC support - run: npm install -g npm@latest + # Install v10.9.8 first as workaround for nodejs/node#62425 + run: | + npm install -g npm@10.9.8 + npm install -g npm@latest - name: Determine npm dist-tag id: dist-tag