From b6ab020da8508c896ac44f2082c0cf2c2ec67022 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 12:14:48 -0700 Subject: [PATCH 1/3] Update GitHub Actions workflow for npm publishing --- .github/workflows/publish.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c0e00a0..88ed75a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,11 +9,12 @@ jobs: runs-on: ubuntu-latest permissions: 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: 14 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci @@ -21,6 +22,4 @@ 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 - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + - run: npm --ignore-scripts publish --provenance From 21b2e76301a2944f012eba1ce55a16c2d3e40109 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Thu, 14 May 2026 09:30:00 -0700 Subject: [PATCH 2/3] Update publish.yml --- .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 88ed75a..3038abd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,8 +11,8 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: node-version: 24 registry-url: https://registry.npmjs.org/ From d879fdfdf3572a56009b0d8e333382094beeb824 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Thu, 14 May 2026 09:30:20 -0700 Subject: [PATCH 3/3] Update nodejs.yml --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 32f71eb..8638283 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -6,11 +6,11 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '24.x' # Enable unprivileged user namespaces for Chrome sandbox # This is required because Ubuntu 23.10+ disables them by default # See: https://github.com/actions/runner-images/issues/9621