From 04dcd59f28b93faa80310adc1672029c28ae5677 Mon Sep 17 00:00:00 2001 From: Urata Daiki <7nohe@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:58:54 +0900 Subject: [PATCH] chore: Update GitHub Actions and Node.js versions --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 817a7f8..5b8d52b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 + uses: actions/checkout@v4 + - uses: pnpm/action-setup@v3 with: version: 8 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'pnpm' - name: Install dependencies