diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 581ae9431b1..bc4b0928bee 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -8,7 +8,7 @@ inputs: node-version: description: 'Node version to use' required: true - default: '20.9.0' + default: '20.11.0' runs: using: 'composite' steps: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e0f110795d2..4267dca0f56 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -69,12 +69,12 @@ javac 21 ``` $ node -v -v20.9.0 +v20.11.0 ``` ``` $ npm -v -10.2.1 +10.3.0 ``` #### Docker diff --git a/pom.xml b/pom.xml index 89c3221a55e..3ea9ada6dda 100644 --- a/pom.xml +++ b/pom.xml @@ -49,8 +49,8 @@ 21 UTF-8 UTF-8 - v20.9.0 - 10.2.1 + v20.11.0 + 10.3.0 3.9.5 3.4.1 diff --git a/src/main/resources/generator/ci/github/actions/.github/actions/setup/action.yml.mustache b/src/main/resources/generator/ci/github/actions/.github/actions/setup/action.yml.mustache index a3a0576c299..1c8df2c6299 100644 --- a/src/main/resources/generator/ci/github/actions/.github/actions/setup/action.yml.mustache +++ b/src/main/resources/generator/ci/github/actions/.github/actions/setup/action.yml.mustache @@ -1,12 +1,12 @@ name: 'Setup' -description: 'Setup environment with Java 21, Node 20.9.0' +description: 'Setup environment with Java 21, Node 20.11.0' runs: using: 'composite' steps: - name: 'Setup: Node.js' uses: actions/setup-node@v3 with: - node-version: 20.9.0 + node-version: 20.11.0 - name: 'Setup: update NPM' shell: bash run: npm install -g npm diff --git a/src/main/resources/generator/dependencies/common/package.json b/src/main/resources/generator/dependencies/common/package.json index 09804069f91..28c5d3b50c6 100644 --- a/src/main/resources/generator/dependencies/common/package.json +++ b/src/main/resources/generator/dependencies/common/package.json @@ -25,7 +25,7 @@ "jest": "29.7.0", "lint-staged": "15.2.0", "mkdirp": "3.0.1", - "node": "20.10.0", + "node": "20.11.0", "npm": "10.3.0", "npm-run-all": "4.1.5", "onchange": "7.1.0",