From b71dc03ead2408973e5033e14fceb5ad8fa2270f Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 18 Oct 2023 23:06:12 -0700 Subject: [PATCH] update action deps --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fde855d..41853d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - node-version: [16.x, 18.15.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x] platform: - os: ubuntu-latest shell: bash @@ -21,12 +21,13 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v1.1.0 + uses: actions/checkout@v4 - name: Use Nodejs ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + cache: npm - name: Install dependencies run: npm install