Skip to content

Commit

Permalink
Adding Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarros1979 committed Jan 10, 2024
1 parent e1613c7 commit a931ac8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-gradle-project.yml
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile
@@ -1,4 +1,4 @@
FROM node:16
FROM node:20

SHELL ["/bin/bash", "-c"]

Expand Down
8 changes: 4 additions & 4 deletions client/build.gradle.kts
Expand Up @@ -10,11 +10,11 @@ allprojects {
apply(plugin = "base")

node {
// Version of node to use.
version.set("16.13.0")
// Version of Node to use.
version.set("20.8.1")

// Version of npm to use.
npmVersion.set("8.1.0")
// Version of NPM to use.
npmVersion.set("10.1.0")

// If true, it will download node using above parameters.
// If false, it will try to use globally installed node.
Expand Down
4 changes: 2 additions & 2 deletions client/web/build.gradle.kts
Expand Up @@ -8,10 +8,10 @@ plugins {

node {
// Version of node to use.
version.set("16.13.0")
version.set("20.8.1")

// Version of npm to use.
npmVersion.set("8.1.0")
npmVersion.set("10.1.0")

// If true, it will download node using above parameters.
// If false, it will try to use globally installed node.
Expand Down

0 comments on commit a931ac8

Please sign in to comment.