From a234fcc7e33e0adb94d9087d54cffce96a21184d Mon Sep 17 00:00:00 2001 From: Fabian Cook Date: Fri, 18 Apr 2025 21:56:44 +1200 Subject: [PATCH 1/2] chore: update node engines to anything 18 or above (#996) Signed-off-by: Fabian Cook --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c648fefe..9b40b3a7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "4.1.11", "description": "A minimal node SOAP client", "engines": { - "node": "18 || 20 || 21 || 22" + "node": ">=18" }, "dependencies": { "@cypress/request": "^3.0.8", From fe17b1623b5a76e39e197c01db7117eb79cea842 Mon Sep 17 00:00:00 2001 From: Fabian Cook Date: Fri, 18 Apr 2025 22:01:02 +1200 Subject: [PATCH 2/2] chore: include node v23 in tests as latest, update node lts for macos and windows (#996) Signed-off-by: Fabian Cook --- .github/workflows/continuous-integration.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 17020141..aed31a10 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -19,12 +19,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [18, 20, 22] + node-version: [18, 20, 22, 23] include: - os: macos-latest - node-version: 20 # LTS + node-version: 22 # LTS - os: windows-latest - node-version: 20 # LTS + node-version: 22 # LTS fail-fast: false runs-on: ${{ matrix.os }} steps: