From 0aba0327240be267dad1a0e74a6631c6f41e14fa Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 22 Nov 2023 11:10:46 -0500 Subject: [PATCH] chore(ci): run workflow against node v20 --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2903eb255f6..750cea4b16e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,13 +12,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node_version: [19] + node_version: [20] os: [windows-latest, macOS-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node_version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node_version }} - name: Install Dependencies