From 2f44747fb800cb9aec7321dbe091e93fd5fe8c2c 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..b42bf6f6af 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: [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.