From 9eb5c70bece82434bcde3e66254719eb83f87c23 Mon Sep 17 00:00:00 2001 From: polygonplanet Date: Sun, 7 Apr 2024 21:43:51 +0900 Subject: [PATCH] chore(ci): update github actions to v4 from v3 and update node versions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 104c01e..7665712 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,17 +8,17 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [8, 9, 10, 11, 12, 13, 14, 16, 18] + node: [16, 18, 20] name: Test runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - name: Use Node.js ${{ matrix.node-version }} + - uses: actions/setup-node@v4 + name: Use Node.js ${{ matrix.node }} with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - name: Install run: npm ci