From fc2555f0352cb4b2567a1a44c90a4046c8115aa6 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Mon, 22 Jul 2024 10:04:04 +0100 Subject: [PATCH 1/2] Update node versions build matrix Changes: * Remove node 16 (eol) * Add node 22, 23 & 24 (current supported versions) --- .github/workflows/tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 7145689..84526b7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,9 +18,11 @@ jobs: strategy: matrix: node_container: - - node:16-alpine - node:18-alpine - node:20-alpine + - node:22-alpine + - node:23-alpine + - node:24-alpine env: NODE_CONTAINER: ${{ matrix.node_container }} From 4f15781581068de11f8326222370cd01866eb388 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Mon, 22 Jul 2024 10:07:19 +0100 Subject: [PATCH 2/2] Node 23 & 24 aren't actually out yet --- .github/workflows/tests.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 84526b7..61509f4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,8 +21,6 @@ jobs: - node:18-alpine - node:20-alpine - node:22-alpine - - node:23-alpine - - node:24-alpine env: NODE_CONTAINER: ${{ matrix.node_container }}