From 5425cd07e2d7d83cec750b78c196c67b83e97699 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:06:03 +0000 Subject: [PATCH 1/3] Initial plan From cf4d2d6d79312dcda9262291e574f9d4b98db766 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:15:33 +0000 Subject: [PATCH 2/3] ci: pin npm install channel for publish jobs --- .github/workflows/npm-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index e3e8ff912..53efb8995 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -21,6 +21,8 @@ jobs: pull-requests: write steps: - uses: Automattic/vip-actions/npm-publish@c8022b66e78461df4f802b935dc0dbb8399f96bc # v0.7.4 + env: + NPM_CONFIG_TAG: next-11 with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} USE_TRUSTED_PUBLISHING: 'true' @@ -57,6 +59,8 @@ jobs: pull-requests: write steps: - uses: Automattic/vip-actions/npm-publish-prerelease@c8022b66e78461df4f802b935dc0dbb8399f96bc # v0.7.4 + env: + NPM_CONFIG_TAG: next-11 with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} USE_TRUSTED_PUBLISHING: 'true' From 004ef2fcfd6c576d784927b55dc6f1ef60d72b3a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:16:11 +0000 Subject: [PATCH 3/3] ci: document npm 11 publish pin --- .github/workflows/npm-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 53efb8995..de94db533 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -22,6 +22,7 @@ jobs: steps: - uses: Automattic/vip-actions/npm-publish@c8022b66e78461df4f802b935dc0dbb8399f96bc # v0.7.4 env: + # npm@12 no longer supports npm-shrinkwrap.json with npm ci in this repository. NPM_CONFIG_TAG: next-11 with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -60,6 +61,7 @@ jobs: steps: - uses: Automattic/vip-actions/npm-publish-prerelease@c8022b66e78461df4f802b935dc0dbb8399f96bc # v0.7.4 env: + # npm@12 no longer supports npm-shrinkwrap.json with npm ci in this repository. NPM_CONFIG_TAG: next-11 with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}