From d04202a00332ba7ac065ea6a6ce74e040fbaaafb Mon Sep 17 00:00:00 2001 From: William Wong Date: Tue, 3 Feb 2026 13:27:44 -0800 Subject: [PATCH] Change Node.js version to 24 for publishing Updated Node.js version for OIDC publishing in the publish job. --- .github/workflows/continuous-deployment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index a4c9e788..164fe4ad 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -53,7 +53,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 24 # Newer Node.js version for OIDC publishing registry-url: https://registry.npmjs.org/ - name: Download tarball artifact uses: actions/download-artifact@v4.2.1 @@ -72,3 +72,4 @@ jobs: - run: npm publish --access public --tag ${{ github.ref_name }} `ls *.tgz` - name: Generate job summary run: echo "NPM package has been published to https://npmjs.com/package/${{ steps.get-version.outputs.package-name }}/v/${{ steps.get-version.outputs.version }}." > $GITHUB_STEP_SUMMARY +