Skip to content

Commit

Permalink
fix node versions in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
gcampbell-msft committed Aug 14, 2024
1 parent b77a853 commit 6dbb49f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions jobs/languageSupport/sharedCode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
- checkout: self
- checkout: VS-Platform
- task: UseNode@1
displayName: "Use Node 16.18"
displayName: "Use Node 18.x"
inputs:
version: "16.18"
version: "18.x"
- script: npm install
displayName: "npm install"
workingDirectory: $(Build.SourcesDirectory)/vscode-cmake-tools/tools/pr-creator
Expand Down
4 changes: 2 additions & 2 deletions jobs/release/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ extends:
ignoreLASTEXITCODE: true
displayName: 'Set the release name'
- task: NodeTool@0
displayName: 'Use Node 14.x'
displayName: 'Use Node 18.x'
inputs:
versionSpec: 14.x
versionSpec: 18.x
- task: Npm@0
displayName: 'install vsce'
inputs:
Expand Down
4 changes: 2 additions & 2 deletions jobs/release/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ extends:

steps:
- task: NodeTool@0
displayName: 'Use Node 14.x'
displayName: 'Use Node 18.x'
inputs:
versionSpec: 14.x
versionSpec: 18.x
- task: Npm@0
displayName: 'install vsce'
inputs:
Expand Down
4 changes: 2 additions & 2 deletions jobs/shared/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ steps:
signType: $(SignType)
zipSources: false
- task: NodeTool@0
displayName: Use Node 16.x
displayName: Use Node 18.x
inputs:
versionSpec: 16.x
versionSpec: 18.x
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@3
displayName: Use Yarn 1.x
- task: CmdLine@2
Expand Down

0 comments on commit 6dbb49f

Please sign in to comment.