From ed7a818cce0c6a25c3cf1c7cbcb3af1dab269f1d Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:02:54 -0700 Subject: [PATCH] chore: drop Node.js 18 from CI build matrix Remove Node.js 18.x from the build/test matrix, keeping only Node.js 20.x and 22.x. Node 18 reached end-of-life on 2025-04-30. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build_test_validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test_validate.yml b/.github/workflows/build_test_validate.yml index e77257a..a284908 100644 --- a/.github/workflows/build_test_validate.yml +++ b/.github/workflows/build_test_validate.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x] steps: - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }}