From a8d1fb0687989a855bc9ced984b6609a441a7985 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 13 Oct 2025 17:50:56 +0100 Subject: [PATCH] remove node 18 --- .github/workflows/unit-tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 55e78508..295116c1 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-large, windows-latest] - # 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 24 is currently supported on actions runners - node-version: [18.x, 20.x, 24.x] + # Node 20 is the currently supported stable Node version for actions - https://docs.github.com/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runsusing-for-javascript-actions + # Node 24 is the new version being added with support in actions runners + node-version: [20.x, 24.x] fail-fast: false runs-on: ${{ matrix.runs-on }}