From 38451f867e0af6bad577a111e3f703801fa5121d Mon Sep 17 00:00:00 2001 From: Northern Man <19808920+NorthernMan54@users.noreply.github.com> Date: Tue, 19 Sep 2023 08:12:04 -0400 Subject: [PATCH] Update build.yml Remove Node 20 support --- .github/workflows/build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ec8c74b9..7034c7c2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,20 +29,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - node-version: [18.x, 20.x] + node-version: [18.x] include: - os: macos-latest node-version: 18.x - - os: macos-latest - node-version: 20.x - os: windows-2019 node-version: 18.x - - os: windows-2019 - node-version: 20.x - os: windows-latest node-version: 18.x - - os: windows-latest - node-version: 20.x runs-on: ${{ matrix.os }}