From 9e9c309d1123467541d49cca89f7349cc8c5bef6 Mon Sep 17 00:00:00 2001 From: Wes Todd Date: Fri, 23 Aug 2024 17:53:25 -0500 Subject: [PATCH] fix!(ci): remove node < 18 from ci and update checkout action --- .github/workflows/ci.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8dfcc9..638519a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,34 +10,30 @@ jobs: strategy: matrix: name: - - Node.js 16.x - - Node.js 17.x - Node.js 18.x - Node.js 19.x - Node.js 20.x - Node.js 21.x + - Node.js 22.x include: - - name: Node.js 16.x - node-version: "16.19" - - - name: Node.js 17.x - node-version: "17.9" - - name: Node.js 18.x - node-version: "18.14" + node-version: "18" - name: Node.js 19.x - node-version: "19.6" + node-version: "19" - name: Node.js 20.x - node-version: "20.10" + node-version: "20" - name: Node.js 21.x - node-version: "21.4" + node-version: "21" + + - name: Node.js 22.x + node-version: "22" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Node.js ${{ matrix.node-version }} shell: bash -eo pipefail -l {0}