From 75551872068e60cf0568645a607c24436e8cc486 Mon Sep 17 00:00:00 2001 From: Maximilian Haupt Date: Wed, 17 Dec 2025 14:59:09 +0100 Subject: [PATCH 1/2] ci: make sure to use latest version of npm Trusted publishing is supported in npm v11.5.1 and higher. The one shipped with node 20 (in .nvmrc) is v10.x. --- .github/actions/setup/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 60df308..2e25faf 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -9,6 +9,10 @@ runs: with: node-version-file: .nvmrc + - name: Update npm to latest version + run: npm install -g npm@latest + shell: bash + - name: Cache dependencies id: yarn-cache uses: actions/cache@v4 From a671e5c437b75a394e2e5f9982488d24dfcc409e Mon Sep 17 00:00:00 2001 From: Maximilian Haupt Date: Wed, 17 Dec 2025 15:05:32 +0100 Subject: [PATCH 2/2] ci: bump node to 20.17 The minimum version to support latest version of npm --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index ee09fac..016e34b 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v20.11.1 +v20.17.0