From 9c07e30087fd6170811e19374df4115bb846261b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 07:45:15 +0000 Subject: [PATCH 1/2] Initial plan From 260e643465c0acd49ad662e6855bcd498f914faa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 07:47:36 +0000 Subject: [PATCH 2/2] Remove Node 18 support; add Node 24 support Co-authored-by: mtrezza <5673677+mtrezza@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca5d14f..66250bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,12 +25,12 @@ jobs: strategy: matrix: include: - - name: Node.js 18 - NODE_VERSION: 18 - name: Node.js 20 NODE_VERSION: 20 - name: Node.js 22 NODE_VERSION: 22 + - name: Node.js 24 + NODE_VERSION: 24 fail-fast: false name: ${{ matrix.name }} timeout-minutes: 15 diff --git a/package.json b/package.json index 0dbec9b..9c80360 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,6 @@ "semantic-release": "25.0.2" }, "engines": { - "node": "18 || 20 || 22" + "node": "20 || 22 || 24" } }