From 48854eadcc202e3e6376ad9cbd7509f3bf6492ce Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:17:20 -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.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 60a412877e6..23451dd8e9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x] # Single version should work for compilation testing steps: