Skip to content

Commit

Permalink
Bump Node.js version (line#6029)
Browse files Browse the repository at this point in the history
Motivation:

I observed that `:docs-client:npmInstall` failed frequently.
https://github.com/line/armeria/actions/runs/12268833874/job/34231348528?pr=5941#step:9:1028

I don't know the root cause, but it would be worth upgrading to the
latest version.

https://nodejs.org/en/about/previous-releases#looking-for-latest-release-of-a-version-branch

Modifications:

- Node.js 22.3.0 -> 22.10.0
- NPM 10.8.1 -> 10.9.0

Result:

Fix the failure of `npm install`
  • Loading branch information
ikhoon authored Dec 11, 2024
1 parent b2360c9 commit 2d45266
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if (rootProject.hasProperty('noWeb')) {
}

node {
version = '22.3.0'
npmVersion = '10.8.1'
version = '22.10.0'
npmVersion = '10.9.0'
download = true
npmInstallCommand = "ci"
}
Expand Down
4 changes: 2 additions & 2 deletions site/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ plugins {
}

node {
version = '22.3.0'
npmVersion = '10.8.1'
version = '22.10.0'
npmVersion = '10.9.0'
download = true
npmInstallCommand = "ci"
}
Expand Down

0 comments on commit 2d45266

Please sign in to comment.