From 8a4d38f9589b299823c691ea30c7a489366250df Mon Sep 17 00:00:00 2001 From: logfox-agent Date: Sat, 1 Aug 2026 02:03:45 -0400 Subject: [PATCH] fix: upgrade setup-node to v6 to silence always-auth warnings setup-node v4 writes deprecated always-auth into .npmrc when registry-url is set; npm 11 on Node 24 warns on every command in release jobs. --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa5a981..2be6cb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: node-version: [20, 22, 24] steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'npm' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a99bfee..3f66462 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: with: fetch-depth: 0 fetch-tags: true - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: '24' # npm 11+ required for trusted publishing (OIDC) registry-url: 'https://registry.npmjs.org'