From 397386e3fe07ff67c2770b0fc7475a1e132f1575 Mon Sep 17 00:00:00 2001 From: Marie Lucca <40550942+francinelucca@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:45:04 -0400 Subject: [PATCH 1/2] Change npm publish access to public --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 198d9b6..709c6c4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,4 +37,4 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false --allow-same-version env: TAG_NAME: ${{ github.event.release.tag_name || inputs.tag }} - - run: npm --ignore-scripts publish --provenance + - run: npm --ignore-scripts publish --provenance --access public From dc43cfdc36891aa57883984860faa75d387f0c61 Mon Sep 17 00:00:00 2001 From: Marie Lucca <40550942+francinelucca@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:48:25 -0400 Subject: [PATCH 2/2] Upgrade Node.js setup action to version 6 --- .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 709c6c4..2c15691 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,9 +27,9 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.event.release.tag_name || inputs.tag }} - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v6 with: - node-version: 18 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci