From 0cd5dd78b74848541b5f66b754b568d49105c4e0 Mon Sep 17 00:00:00 2001 From: Samuel Bodin <1637651+bodinsamuel@users.noreply.github.com> Date: Wed, 20 Mar 2024 20:48:22 +0100 Subject: [PATCH] ci: remove node 19 (#1883) ## Describe your changes Node 19 has reached end of life a long time ago. It's more recommended to test [LTS](https://nodejs.org/en/about/previous-releases) instead of intermediate version. NB: Node 18 has entered it's maintenance phase in october, and Node 20 is now recommended. I think it would be great to upgrade for all the new features and perf gain. - Use Node20 instead of Node19 in test matrix --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e4a3d1ce01..2ca41b51ff 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 19.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v3