From 4f2544ded9611113aa8aeff8c0e518d20fcc3a38 Mon Sep 17 00:00:00 2001 From: Markus Tacker Date: Tue, 28 Nov 2023 17:06:11 +0100 Subject: [PATCH] docs: upgrade Node.js to version 20 Node.js 20 is the current LTS release: https://nodejs.org/en/about/releases/ BREAKING CHANGE: the minimum Node.js is 20 --- .github/workflows/build-and-release.yaml | 2 +- .github/workflows/pr-check_compliance.yaml | 2 +- .github/workflows/pr-clang-format.yaml | 2 +- .github/workflows/update-from-ncs.yaml | 2 +- package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index aa9d5ba5..e20f590f 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -207,6 +207,6 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "20.x" - run: npx semantic-release diff --git a/.github/workflows/pr-check_compliance.yaml b/.github/workflows/pr-check_compliance.yaml index a8713f73..96fd350f 100644 --- a/.github/workflows/pr-check_compliance.yaml +++ b/.github/workflows/pr-check_compliance.yaml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "20.x" - uses: actions/cache@v3 name: Cache dependencies with: diff --git a/.github/workflows/pr-clang-format.yaml b/.github/workflows/pr-clang-format.yaml index cc9bc5ee..a37abc25 100644 --- a/.github/workflows/pr-clang-format.yaml +++ b/.github/workflows/pr-clang-format.yaml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "20.x" - uses: actions/cache@v3 name: Cache dependencies with: diff --git a/.github/workflows/update-from-ncs.yaml b/.github/workflows/update-from-ncs.yaml index abdef3b5..5712ae75 100644 --- a/.github/workflows/update-from-ncs.yaml +++ b/.github/workflows/update-from-ncs.yaml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "20.x" - uses: actions/cache@v3 name: Cache dependencies with: diff --git a/package.json b/package.json index 9daedae6..3752576c 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ ] }, "engines": { - "node": ">=18", + "node": ">=20", "npm": ">=9" }, "release": {