From 6435e050d3efd6a7d8b53c1c61e5b670625323a0 Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Mon, 7 Oct 2024 11:04:47 -0400 Subject: [PATCH] Remove Node 16 --- .github/workflows/unit-tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 8b241adf..d02de108 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -18,10 +18,9 @@ jobs: matrix: runs-on: [ubuntu-latest, macos-latest, windows-latest] - # Node 16 actions are in the process of being deprecated - # Node 18 is the current default Node version in hosted runners, so users may still use the toolkit with it + # Node 18 is the current default Node version in hosted runners, so users may still use the toolkit with it when running tests (see https://github.com/actions/toolkit/issues/1841) # Node 20 is the currently support Node version for actions - https://docs.github.com/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runsusing-for-javascript-actions - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] fail-fast: false runs-on: ${{ matrix.runs-on }}