From a9cdbb07bf8d2fe7e29a95f8f3cf3ec0b81b42df Mon Sep 17 00:00:00 2001 From: Federico Neri Date: Tue, 7 Apr 2026 18:56:50 +0200 Subject: [PATCH 1/2] ci: remove failing npm self-upgrade from publish workflow --- .github/workflows/publish.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 384b4cb..7c5a83f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,9 +49,6 @@ jobs: cache: npm registry-url: https://registry.npmjs.org - - name: Upgrade npm for OIDC trusted publishing - run: npm install -g npm@latest - - name: Install dependencies run: npm ci From eda12929d352713bef8caed98b6d254b986033b4 Mon Sep 17 00:00:00 2001 From: Federico Neri Date: Tue, 7 Apr 2026 19:05:54 +0200 Subject: [PATCH 2/2] ci: use latest patched Node 22 toolchain for publish --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c5a83f..b8d6671 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,6 +46,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: 22 + check-latest: true cache: npm registry-url: https://registry.npmjs.org