From 05a85b97d683ea2ede231acae52a559966ea5c1a Mon Sep 17 00:00:00 2001 From: David Walsh <5778036+rhinodavid@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:24:55 -0700 Subject: [PATCH] [ci] Add Node 22, drop 19 & 18 --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index de50b9f..5fe256e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,8 +11,10 @@ jobs: strategy: matrix: - node-version: [21.x, 20.x, 19.x, 18.x] - os: [ubuntu-latest, macos-latest] + node-version: [22.x, 20.x] + # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners + # macos-13 runs on intel processors, macos-14 runs on apple silicon + os: [ubuntu-latest, macos-13, macos-14] runs-on: ${{ matrix.os }}