From a4ffac9824d91e8e8ed9572a49e50d1e1c7d496d Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Thu, 7 Sep 2023 14:25:51 -0700 Subject: [PATCH] ci: update actions versions --- .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 8a32baa6..71a5ef2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,18 +12,18 @@ jobs: node-version: [14.x, 16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: fetch-depth: 10 - name: Use Node.js 18.x to build - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 18.x - run: npm install - run: npm run build - run: rm -rf node_modules - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm install