From 4f430b978564493fa349d7c40c2231332ef9cfc0 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Wed, 3 Jun 2026 08:51:56 -0400 Subject: [PATCH] update publish workflow to use actions v4 Fixes npm warning about deprecated always-auth config by updating setup-node from v3 to v4. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 81153cc..a137c9b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: lts/* registry-url: 'https://registry.npmjs.org'