From 4ec27dc371634251a010162f8fd19b145dd15805 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Wed, 10 Jun 2026 07:42:52 +0900 Subject: [PATCH] chore(ci): update Node.js version to 24.x and upgrade action versions --- .github/workflows/ci.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.js.yml b/.github/workflows/ci.js.yml index fb44d617..a769a8d2 100644 --- a/.github/workflows/ci.js.yml +++ b/.github/workflows/ci.js.yml @@ -12,14 +12,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x] + node-version: [24.x] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: submodules: recursive - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm ci