Skip to content

Commit 799f0b3

Browse files
use Node v22 (#13454)
1 parent 93d5c1f commit 799f0b3

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Diff for: .github/actions/AddComment/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ inputs:
3838
readonly:
3939
description: If true, changes are not applied.
4040
runs:
41-
using: 'node12'
41+
using: 'node20'
4242
main: 'index.js'

Diff for: .github/actions/Locker/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ inputs:
2929
readonly:
3030
description: If true, changes are not applied.
3131
runs:
32-
using: 'node12'
32+
using: 'node20'
3333
main: 'index.js'

Diff for: .github/actions/Reopener/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ inputs:
3333
readonly:
3434
description: If true, changes are not applied.
3535
runs:
36-
using: 'node12'
36+
using: 'node20'
3737
main: 'index.js'

Diff for: .github/actions/StaleCloser/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ inputs:
4343
readonly:
4444
description: If true, changes are not applied.
4545
runs:
46-
using: 'node12'
46+
using: 'node20'
4747
main: 'index.js'

Diff for: .github/workflows/job-compile-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24-
- name: Use Node.js 20
24+
- name: Use Node.js 22
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 20
27+
node-version: 22
2828

2929
- name: Install Dependencies
3030
run: yarn install ${{ inputs.yarn-args }}

Diff for: Build/cg/cg.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ extends:
8080
displayName: Use Yarn 1.x
8181

8282
- task: UseNode@1
83-
displayName: Use Node 18.x
83+
displayName: Use Node 22.x
8484
inputs:
85-
version: 18.x
85+
version: 22.x
8686

8787
- script: IF EXIST %SYSTEMDRIVE%\Users\%USERNAME%\.npmrc del %SYSTEMDRIVE%\Users\%USERNAME%\.npmrc
8888
displayName: Delete .npmrc if it exists

Diff for: Build/loc/TranslationsImportExport.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ extends:
5050
steps:
5151
- task: NodeTool@0
5252
inputs:
53-
versionSpec: '18.x'
53+
versionSpec: '22.x'
5454
displayName: 'Install Node.js'
5555

5656
- task: CmdLine@2

Diff for: Build/package/jobs_package_vsix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- checkout: self
2323

2424
- task: UseNode@1
25-
displayName: Use Node 18.x
25+
displayName: Use Node 22.x
2626
inputs:
27-
version: 18.x
27+
version: 22.x
2828

2929
- task: Npm@0
3030
displayName: Install vsce

Diff for: Build/publish/jobs_publish_vsix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717

1818
steps:
1919
- task: NodeTool@0
20-
displayName: Use Node 18.x
20+
displayName: Use Node 22.x
2121
inputs:
22-
versionSpec: 18.x
22+
versionSpec: 22.x
2323

2424
- task: Npm@0
2525
displayName: Install vsce

0 commit comments

Comments
 (0)