From 0a45d65b72f287cb31416fcb8639e129449bd75b Mon Sep 17 00:00:00 2001 From: Ethan Smith Date: Thu, 2 May 2024 20:45:58 -0400 Subject: [PATCH] ci: update CI steps to use node 20 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82348bf..51bb8ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history - - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - run: npm i -g npm@10.5.0 @@ -25,10 +25,10 @@ jobs: matrix: node-version: [ 16, 20, 'lts/*', 'latest' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm i -g npm@10.5.0