From 0b8f00ae981aaa28a6289314cea85ef93dfc43b6 Mon Sep 17 00:00:00 2001 From: isamu Date: Thu, 2 Apr 2026 20:16:28 +0900 Subject: [PATCH 1/2] chore: update GitHub Actions to Node.js 24 compatible versions Update actions to their latest major versions to resolve Node.js 20 deprecation warnings. Co-Authored-By: Claude Opus 4.6 (1M context) --- .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 ba002e8..b8bc8e7 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -19,9 +19,9 @@ jobs: matrix: node-version: [22.x, 24.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup@v6 with: node-version: ${{ matrix.node-version }} cache: 'yarn' From 3388c273e317c1b2d1a9584007d1dcc0374872d1 Mon Sep 17 00:00:00 2001 From: isamu Date: Thu, 2 Apr 2026 20:19:33 +0900 Subject: [PATCH 2/2] fix: correct actions/setup-node typo in workflow files Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index b8bc8e7..2d6cb77 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup@v6 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'yarn'