diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index fdb577a..225694f 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [20, 22, 24] + node-version: [22, 24, 26] steps: - name: Git checkout uses: actions/checkout@v6 @@ -31,10 +31,10 @@ jobs: timeout-minutes: 60 steps: - uses: actions/checkout@v6 - - name: Use Node.js 20 + - name: Use Node.js 24 uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 - name: Bootstrap project run: | npm ci --ignore-scripts @@ -49,10 +49,10 @@ jobs: - uses: actions/checkout@v6 with: fetch-depth: 0 - - name: Use Node.js 20 + - name: Use Node.js 24 uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 - name: Bootstrap project run: | npm ci --ignore-scripts diff --git a/package-lock.json b/package-lock.json index ffa78cb..a4b2409 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "loopback-connector-rest", - "version": "6.0.6", + "version": "6.0.7", "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -33,7 +33,7 @@ "should": "^13.2.1" }, "engines": { - "node": ">=20" + "node": ">=22" } }, "node_modules/@commitlint/config-conventional": { diff --git a/package.json b/package.json index 775dd53..74e243f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "6.0.7", "description": "Loopback REST Connector", "engines": { - "node": ">=20" + "node": ">=22" }, "keywords": [ "LoopBack", @@ -46,5 +46,5 @@ "url": "https://github.com/loopbackio/loopback-connector-rest.git" }, "license": "MIT", - "author": "IBM Corp." + "author": "IBM Corp. and LoopBack contributors" }