Skip to content

Commit

Permalink
upgrade to NodeJS v20
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Wilke committed Nov 24, 2023
1 parent 70f0c46 commit 2364fe8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ jobs:
distribution: 'temurin'
java-version: '17'

- uses: actions/setup-node@v4
with:
node-version: '20'

- name: Build with Maven
run: mvn clean verify
run: |
node --version
mvn clean verify
- name: Publish Test Report
if: success() || failure()
Expand Down
2 changes: 1 addition & 1 deletion frontend/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v20
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"engine-strict": true,
"engines": {
"node": "18"
"node": "20"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
Expand Down
2 changes: 1 addition & 1 deletion frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<configuration>
<nodeVersion>v18.18.2</nodeVersion>
<nodeVersion>v20.10.0</nodeVersion>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 2364fe8

Please sign in to comment.