From fec643475e31e09eae0368bd57950d1db6583ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernesto=20Garc=C3=ADa?= Date: Tue, 5 Aug 2025 19:47:22 -0400 Subject: [PATCH] chore: drop running tests for Node 14 & 16 Node v16's security support ended 1 year and 10 months ago (11 Sep 2023), according to https://endoflife.date/nodejs. Node v14's security support ended even before that. --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 4d59233..307237b 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -16,7 +16,7 @@ jobs: if: ${{ !contains(github.head_ref, 'all-contributors') }} strategy: matrix: - node: [14, 16, 18, 20, 22, 24] + node: [18, 20, 22, 24] runs-on: ubuntu-latest steps: - name: ⬇️ Checkout repo