From 773a20a2d18b115ae6a45bd20561aea4d8c10468 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 26 Aug 2025 14:22:52 +0200 Subject: [PATCH 1/2] chore(ci): Update Node.js version to 24.x in `tests.yml` --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8720d768a..74255971cc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,17 +94,17 @@ jobs: matrix: os: [windows-latest, macos-latest, ubuntu-latest] python: ["3.9", "3.11", "3.13"] - node: [18.x, 20.x, 22.x, 23.x] + node: [18.x, 20.x, 22.x, 24.x] include: - os: macos-13 python: "3.13" - node: 23.x + node: 24.x - os: ubuntu-24.04-arm python: "3.13" - node: 23.x + node: 24.x - os: windows-2025 python: "3.13" - node: 23.x + node: 24.x name: ${{ matrix.os }} - ${{ matrix.python }} - ${{ matrix.node }} runs-on: ${{ matrix.os }} env: From bc448850f77690130e9c4fb5d838211d75d0d636 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 26 Aug 2025 14:25:00 +0200 Subject: [PATCH 2/2] Remove EOL Node.js 18.x --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 74255971cc..3cbd539fc1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,7 +94,7 @@ jobs: matrix: os: [windows-latest, macos-latest, ubuntu-latest] python: ["3.9", "3.11", "3.13"] - node: [18.x, 20.x, 22.x, 24.x] + node: [20.x, 22.x, 24.x] include: - os: macos-13 python: "3.13"