Skip to content

Commit 84e80c6

Browse files
authored
Update node version to 20.18.0 (#24356)
1 parent 9b182da commit 84e80c6

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- 'release-*'
1010

1111
env:
12-
NODE_VERSION: 18.17.1
12+
NODE_VERSION: 20.18.0
1313
PYTHON_VERSION: '3.10' # YML treats 3.10 the number as 3.1, so quotes around 3.10
1414
# Force a path with spaces and to test extension works in these scenarios
1515
# Unicode characters are causing 2.7 failures so skip that for now.

.github/workflows/pr-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- release*
99

1010
env:
11-
NODE_VERSION: 18.17.1
11+
NODE_VERSION: 20.18.0
1212
PYTHON_VERSION: '3.10' # YML treats 3.10 the number as 3.1, so quotes around 3.10
1313
MOCHA_REPORTER_JUNIT: true # Use the mocha-multi-reporters and send output to both console (spec) and JUnit (mocha-junit-reporter). Also enables a reporter which exits the process running the tests if it haven't already.
1414
ARTIFACT_NAME_VSIX: ms-python-insiders-vsix

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.17.1
1+
v20.18.0

build/azure-pipeline.pre-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ extends:
6666
buildSteps:
6767
- task: NodeTool@0
6868
inputs:
69-
versionSpec: '18.17.1'
69+
versionSpec: '20.18.0'
7070
displayName: Select Node version
7171

7272
- task: UsePythonVersion@0

build/azure-pipeline.stable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ extends:
6161
buildSteps:
6262
- task: NodeTool@0
6363
inputs:
64-
versionSpec: '18.17.1'
64+
versionSpec: '20.18.0'
6565
displayName: Select Node version
6666

6767
- task: UsePythonVersion@0

build/azure-pipelines/pipeline.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ extends:
3737
testPlatforms:
3838
- name: Linux
3939
nodeVersions:
40-
- 18.17.1
40+
- 20.18.0
4141
- name: MacOS
4242
nodeVersions:
43-
- 18.17.1
43+
- 20.18.0
4444
- name: Windows
4545
nodeVersions:
46-
- 18.17.1
46+
- 20.18.0
4747
testSteps:
4848
- template: /build/azure-pipelines/templates/test-steps.yml@self
4949
parameters:

pythonExtensionApi/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pythonExtensionApi/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"main": "./out/main.js",
1414
"types": "./out/main.d.ts",
1515
"engines": {
16-
"node": ">=18.17.1",
16+
"node": ">=20.18.0",
1717
"vscode": "^1.93.0"
1818
},
1919
"license": "MIT",

0 commit comments

Comments
 (0)