From cb6cba57c79eafeb2df7d4dcf4e4cd9fd3a04440 Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:19:00 -0500 Subject: [PATCH] remove 14.x as well, and add 22.x --- .github/workflows/continuous-integration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index b1b3ab3875..014e00d2ec 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,7 +12,9 @@ jobs: matrix: operating-system: [ubuntu-latest, macos-latest, windows-latest] # Node 12.x is EOL as of April 2022: https://nodejs.org/en/blog/release/v12.13.0. - node-version: [14.x, 16.x, 18.x, 20.x] + # Node 14.x is EOL as of April 2023: https://nodejs.org/en/blog/release/v14.15.0. + # Node 22.x is now LTS: https://nodejs.org/en/blog/announcements/v22-release-announce + node-version: [14.x, 16.x, 18.x, 20.x, 22.x] # The 'setup-node' action has become unable to locate versions for macos ("darwin") on arm64 # for some reason. Processor architecture shouldn't affect any of our testing, so we can pin # this for now.