From 90bdbba73d95fb68ad598e7a4a543bd320cd6b11 Mon Sep 17 00:00:00 2001 From: Christoph Settgast Date: Fri, 2 Jan 2026 21:24:35 +0100 Subject: [PATCH] ci: Update publish step to support trusted publishing Update the node version to 24 so that the included npm fulfills the version requirement for trusted publishing --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e05605f..b833e1de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,9 +80,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '24' registry-url: 'https://registry.npmjs.org' - run: npm publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} -