From 9366dea40fc081c3fcd9565ac8da73d81c9b7094 Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Wed, 15 May 2024 08:16:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20Updat?= =?UTF-8?q?e=20Node.js=20build=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop Node.js v16 support, and add v22 support in-line with the Node.js [release schedule][1]. [1]: https://github.com/nodejs/release#release-schedule --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0efbe9e..e6f9695 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,9 +15,9 @@ jobs: strategy: matrix: node: - - 16 - 18 - 20 + - 22 timeout-minutes: 2 steps: - uses: actions/checkout@v2