From c6a9a9f28450fc3ecf2a102f391ffd3ab8405752 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 12:20:10 -0700 Subject: [PATCH 1/3] Upgrade GitHub Actions to version 4 --- .github/workflows/publish.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 780f9e5..1cf23af 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,10 +12,10 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm install -g npm@latest @@ -24,9 +24,7 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: npm whoami; npm --ignore-scripts publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + - run: npm --ignore-scripts publish --provenance --access public publish-github: name: Publish to GitHub Packages runs-on: ubuntu-latest From a8ff6cdb7ce90915384a6b479afdc3b49ae78d03 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 12:24:31 -0700 Subject: [PATCH 2/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .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 1cf23af..84df746 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 24 + node-version: 22 registry-url: https://registry.npmjs.org/ cache: npm - run: npm install -g npm@latest From 611875ab6e0cfe839c52fbda1633254546530ed7 Mon Sep 17 00:00:00 2001 From: Marie Lucca <40550942+francinelucca@users.noreply.github.com> Date: Fri, 8 May 2026 15:48:33 -0400 Subject: [PATCH 3/3] Upgrade GitHub Actions to checkout@v4 and setup-node@v4 --- .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 84df746..70170e8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,8 +33,8 @@ jobs: packages: write id-token: write steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 22 registry-url: https://npm.pkg.github.com