From 99a80c1b4b38d7bc3b359ea84541887cfa9950fc Mon Sep 17 00:00:00 2001 From: Max <53796487+dyedwiper@users.noreply.github.com> Date: Fri, 8 Nov 2024 09:45:30 +0100 Subject: [PATCH] BC-7995 Update engines spec and raise Node versions in github actions (#15) * Update engines to allow node versions >= 20 * Set node-version to 22 in github actions * Raise version to 1.2.0 --- .github/workflows/deploy.yml | 2 +- .github/workflows/push.yml | 2 +- package-lock.json | 6 +++--- package.json | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 007e1b1..dcd6f65 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 22 - name: Build run: | npm ci diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index f10f296..09570c5 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 22 - name: Build run: | npm ci diff --git a/package-lock.json b/package-lock.json index 746a905..56c6e6c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hpi-schul-cloud/ckeditor", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hpi-schul-cloud/ckeditor", - "version": "1.1.0", + "version": "1.2.0", "license": "AGPL-3.0", "devDependencies": { "@ckeditor/ckeditor5-autoformat": "^37.1.0", @@ -42,7 +42,7 @@ "webpack-cli": "^4.10.0" }, "engines": { - "node": "20", + "node": ">=20", "npm": ">=10" } }, diff --git a/package.json b/package.json index 0a622c1..12588d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hpi-schul-cloud/ckeditor", - "version": "1.1.0", + "version": "1.2.0", "description": "Custom version of CKEditor5 for the Schulcloud-Verbund-Software-Client", "author": "Dataport Schulcloud-Verbund-Software Team", "repository": { @@ -53,7 +53,7 @@ "webpack-cli": "^4.10.0" }, "engines": { - "node": "20", + "node": ">=20", "npm": ">=10" } }