Skip to content

Commit

Permalink
Merge pull request #7869 from pascalgrimaud/bump-node-20.9.0-npm-10.2.1
Browse files Browse the repository at this point in the history
Bump Node to 20.9.0 and NPM to 10.2.1
  • Loading branch information
pascalgrimaud authored Oct 26, 2023
2 parents 22fb0a0 + 4a7e202 commit 27aab80
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
node-version:
description: 'Node version to use'
required: true
default: '18.18.2'
default: '20.9.0'
runs:
using: 'composite'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ updates:
- 'area: dependencies'
ignore:
- dependency-name: 'node'
versions: ['15.x', '17.x', '19.x', '20.x']
versions: ['15.x', '17.x', '19.x', '21.x']
- package-ecosystem: 'npm'
directory: '/src/main/resources/generator/dependencies/vue'
schedule:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ javac 17.0.1

```
$ node -v
v18.18.2
v20.9.0
```

```
$ npm -v
10.2.0
10.2.1
```

#### Docker
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<node.version>v18.18.2</node.version>
<npm.version>10.2.0</npm.version>
<node.version>v20.9.0</node.version>
<npm.version>10.2.1</npm.version>

<maven.version>3.9.5</maven.version>
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: 'Setup'
description: 'Setup environment with Java 17, Node 18.18.2'
description: 'Setup environment with Java 17, Node 20.9.0'
runs:
using: 'composite'
steps:
- name: 'Setup: Node.js'
uses: actions/setup-node@v3
with:
node-version: 18.18.2
node-version: 20.9.0
- name: 'Setup: update NPM'
shell: bash
run: npm install -g npm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"jasmine-core": "5.1.1",
"jest": "29.7.0",
"lint-staged": "15.0.2",
"node": "18.18.2",
"node": "20.9.0",
"npm": "10.2.1",
"prettier": "3.0.3",
"prettier-plugin-java": "2.3.1",
Expand Down

0 comments on commit 27aab80

Please sign in to comment.