From cd5a1379479f5f25623dc997651fc92104834fdc Mon Sep 17 00:00:00 2001 From: johnrb2 Date: Wed, 15 Jul 2026 13:15:42 -0600 Subject: [PATCH] Remove unsupported always-auth input from setup-node steps actions/setup-node v6 no longer recognizes the always-auth input and logs "Unexpected input(s) 'always-auth'" warnings on every run. It was a no-op: the private @activeprospect scope authenticates via the committed .npmrc (_authToken=${NPM_TOKEN}), so dropping it changes no behavior and clears the warnings. sc-112520 Co-authored-by: Cursor --- .github/workflows/deploy-staging.yml | 1 - .github/workflows/test.yml | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 7b4f99d..2892f05 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -18,7 +18,6 @@ jobs: - name: setup node.js uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: - always-auth: true node-version: "24" registry-url: https://registry.npmjs.org scope: "@activeprospect" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06b66c8..7dcb66c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,6 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: - always-auth: true node-version: '24' registry-url: https://registry.npmjs.org scope: "@activeprospect" @@ -32,7 +31,6 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: - always-auth: true node-version: '24' registry-url: https://registry.npmjs.org scope: "@activeprospect"