Skip to content

Commit

Permalink
Bump Node.js version
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 trying to upgrade the
version to latest versions.
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 committed Dec 11, 2024
1 parent fa76e99 commit 1e99962
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 1e99962

Please sign in to comment.