From e32875836a2793117a006d549056394ffe81074a Mon Sep 17 00:00:00 2001 From: isamu Date: Sat, 27 Jun 2026 07:04:35 +0900 Subject: [PATCH] chore: bump GitHub Actions to latest + Node 24 - actions/checkout v7 / setup-node v6 / upload-artifact v7 / download-artifact v8 / cache v6 - codecov/codecov-action v7 - actions/configure-pages v6 / deploy-pages v5 / upload-pages-artifact v5 - github/codeql-action v4 - Node matrix includes 24.x where missing - (when present) Playwright container -> v1.61.1-noble Mechanical bump across receptron/* + isamu/* non-fork repos. --- .github/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 125b5ef..8710a88 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -25,7 +25,7 @@ jobs: node-version: [22.x, 24.x] os: [ubuntu-latest, windows-latest, macos-latest] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: @@ -39,7 +39,7 @@ jobs: shell: powershell - name: Cache node_modules (Windows) if: runner.os == 'Windows' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: win-node-modules-${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}