From 9528404c7e47681e36980e7015149d155b125799 Mon Sep 17 00:00:00 2001 From: Manuel Puyol Date: Fri, 3 Apr 2026 13:50:27 -0700 Subject: [PATCH] Upgrade Node.js and actions in publish.yml Updated Node.js version and action versions in the publish workflow. --- .github/workflows/publish.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6c8f932..2a441d3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,12 +11,11 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 22 - registry-url: https://registry.npmjs.org/ - cache: npm + node-version: '24' + registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm run build - run: npm test