From 70bc136ea62a0c972a048e445f3b3d6ff58523c2 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 28 Jul 2024 13:15:43 +0200 Subject: [PATCH] Stop testing in Node.js 21 since it's reached end-of-life According to https://github.com/nodejs/release?tab=readme-ov-file#end-of-life-releases Node.js 21 stopped being supported on 2024-06-01, which is almost two months ago now, hence it seems pointless to keep testing in that environment. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c48286c92ad41..5206c17f33782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18, lts/*, 21] + node-version: [18, lts/*] steps: - name: Checkout repository