From 8f5305806ef7759c7216ab7bddc9d05fd3711de0 Mon Sep 17 00:00:00 2001 From: Elliot Taylor Date: Tue, 12 May 2026 16:08:14 +0100 Subject: [PATCH] Use Node 24 for npm trusted publishing --- .github/workflows/publish.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 976b268..b4b9bbb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,12 +27,14 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 22.x + node-version: 24.x registry-url: https://registry.npmjs.org cache: npm - - name: Upgrade npm - run: npm install -g npm@latest + - name: Show tool versions + run: | + node --version + npm --version - name: Install dependencies run: npm ci