From 1d578ee49e063effe89eb3acd0831bed6810c77c Mon Sep 17 00:00:00 2001 From: Ryuichi Okumura Date: Mon, 1 Dec 2025 23:13:45 +0900 Subject: [PATCH] ci: bump GitHub Actions to latest versions --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e548db..39ad006 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,11 +11,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [20.x, 22.x, 24.x] + node-version: [20, 22, 24] steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v6 - 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