From db49eeb8841eea843bd2ea6415f1ea2130ff5f58 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Sun, 23 Jun 2024 11:56:49 -0700 Subject: [PATCH] chore: drop unsupported node versions on macOS No change to logic. This drops support for older NodeJS versions on macOS because GitHub Actions no longer supports them. This also updates NodeJS to the latest LTS release. --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 20ac6eb..e09e476 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,10 +17,23 @@ jobs: - 14 - 16 - 18 + - 20 + - 22 os: - ubuntu-latest - macos-latest - windows-latest + exclude: + - node-version: 6 + os: macos-latest + - node-version: 8 + os: macos-latest + - node-version: 10 + os: macos-latest + - node-version: 12 + os: macos-latest + - node-version: 14 + os: macos-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2