From 23fce237cf0ba3dc8087a6e9501b379bac12106c Mon Sep 17 00:00:00 2001 From: MGPOCKY Date: Fri, 31 Jul 2026 09:07:39 +0000 Subject: [PATCH 1/2] fix(ci): align workflow Node.js version with package engines --- .github/workflows/bump-version-on-merge-next.yml | 2 +- .github/workflows/create-a-release-draft.yml | 4 ++-- .github/workflows/publish-package-to-npm.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bump-version-on-merge-next.yml b/.github/workflows/bump-version-on-merge-next.yml index 023bf8097..cc98fca9c 100644 --- a/.github/workflows/bump-version-on-merge-next.yml +++ b/.github/workflows/bump-version-on-merge-next.yml @@ -64,7 +64,7 @@ jobs: # Setup node environment - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 # Bump version to the next prerelease (patch) with rc suffix - name: Suggest the new version diff --git a/.github/workflows/create-a-release-draft.yml b/.github/workflows/create-a-release-draft.yml index 02ffb1b33..09d4fa225 100644 --- a/.github/workflows/create-a-release-draft.yml +++ b/.github/workflows/create-a-release-draft.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 # Checkout to target branch - uses: actions/checkout@v2 with: @@ -70,7 +70,7 @@ jobs: # Setup node environment - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 # Prepare, build and publish project - name: Install dependencies diff --git a/.github/workflows/publish-package-to-npm.yml b/.github/workflows/publish-package-to-npm.yml index e867a7ede..0297b0dad 100644 --- a/.github/workflows/publish-package-to-npm.yml +++ b/.github/workflows/publish-package-to-npm.yml @@ -22,7 +22,7 @@ jobs: # Setup node environment - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 registry-url: https://registry.npmjs.org/ # Prepare, build and publish project From b4c5f833d17fa803d3a7ee2ace5dc127a99d5346 Mon Sep 17 00:00:00 2001 From: MGPOCKY Date: Tue, 4 Aug 2026 01:52:18 +0000 Subject: [PATCH 2/2] chore(ci): bump setup-node from v1 to v3 actions/setup-node@v1 is EOL; align with other workflows in this repo that already use @v3. Co-authored-by: Cursor --- .github/workflows/bump-version-on-merge-next.yml | 2 +- .github/workflows/create-a-release-draft.yml | 2 +- .github/workflows/publish-package-to-npm.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump-version-on-merge-next.yml b/.github/workflows/bump-version-on-merge-next.yml index cc98fca9c..42e85e86d 100644 --- a/.github/workflows/bump-version-on-merge-next.yml +++ b/.github/workflows/bump-version-on-merge-next.yml @@ -62,7 +62,7 @@ jobs: - uses: actions/checkout@v2 # Setup node environment - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/create-a-release-draft.yml b/.github/workflows/create-a-release-draft.yml index 09d4fa225..1c85a9ccd 100644 --- a/.github/workflows/create-a-release-draft.yml +++ b/.github/workflows/create-a-release-draft.yml @@ -68,7 +68,7 @@ jobs: submodules: 'recursive' # Setup node environment - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/publish-package-to-npm.yml b/.github/workflows/publish-package-to-npm.yml index 0297b0dad..b898bee4b 100644 --- a/.github/workflows/publish-package-to-npm.yml +++ b/.github/workflows/publish-package-to-npm.yml @@ -20,7 +20,7 @@ jobs: uses: codex-team/action-nodejs-package-info@v1 # Setup node environment - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: 18 registry-url: https://registry.npmjs.org/