Skip to content

Commit e117fb7

Browse files
authored
chore: bump node and align versions for typescript (#1218)
1 parent 23d3abd commit e117fb7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/draft-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Node.js Environment
4444
uses: actions/setup-node@v4
4545
with:
46-
node-version: 22.15.1
46+
node-version: 22.21.1
4747
cache: pnpm
4848

4949
- name: Install Dependencies

.github/workflows/publish-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node.js Environment
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 22.15.1
21+
node-version: 22.21.1
2222
cache: pnpm
2323

2424
- name: Run node-gyp bug workaround script

.github/workflows/test-and-build-from-fork.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
3030
NODE_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/main/.nvmrc | tr -d '[:space:]')
3131
if [ -z "$NODE_VERSION" ]; then
32-
NODE_VERSION="22.20.0"
32+
NODE_VERSION="22.21.1"
3333
fi
3434
echo "Using Node.js version for VS Code extension tests: $NODE_VERSION"
3535
echo "vscode-node-version=$NODE_VERSION" >> $GITHUB_OUTPUT

.github/workflows/test-and-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
3939
NODE_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/main/.nvmrc | tr -d '[:space:]')
4040
if [ -z "$NODE_VERSION" ]; then
41-
NODE_VERSION="22.20.0"
41+
NODE_VERSION="22.21.1"
4242
fi
4343
echo "Using Node.js version for VS Code extension tests: $NODE_VERSION"
4444
echo "vscode-node-version=$NODE_VERSION" >> $GITHUB_OUTPUT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
},
7575
"engines": {
7676
"vscode": "^1.101.1",
77-
"node": "^20.19.0 || ^22.12.0 || >= 23.0.0",
77+
"node": "^22.20.0 || >= 23.0.0",
7878
"pnpm": ">=10.0.0"
7979
},
8080
"activationEvents": [

0 commit comments

Comments
 (0)