Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade NodeJs to 20x #410

Merged
merged 3 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: "20.x"
- run: pip install mkdocs-material mdx_truly_sane_lists
- run: npm ci
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-BETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.3
with:
node-version: "18.x"
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
scope: nvuillam
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4.0.3
with:
node-version: "18.x"
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
scope: nvuillam
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: "20.x"

- name: Install groovy
uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
node_version: ['18']
node_version: ['20']
java_version: ['11', '17','21']
java_distrib: [temurin]
os: [ubuntu-latest, macos-latest, windows-latest]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Setup renovate
- Upgrade dependencies, including base package node-java-caller
- Upgrade NodeJs to minimum version 20
- Upgrade MegaLinter to v8

## [14.6.0] 2024-05-08
Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Setup renovate
- Upgrade dependencies, including base package node-java-caller
- Upgrade NodeJs to minimum version 20
- Upgrade MegaLinter to v8

## [14.6.0] 2024-05-08
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"which": "^2.0.2"
},
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
},
"mocha": {
"require": [
Expand Down
Loading