From 2fd8668b2dfe5644bd836bbcd12d93764c29bc9b Mon Sep 17 00:00:00 2001 From: "heecheol.park" Date: Thu, 18 Jun 2026 17:22:21 +0900 Subject: [PATCH] chore(ci): bump release to Node 20 and actions to v5 The release job ran on Node 18.x (EOL since 2025-04), which the pinned npm@11.6.2 override does not support, flooding the release log with `npm warn EBADENGINE`. Bump the release job to Node 20.x to match. Also bump actions/checkout and actions/setup-node from v4 to v5 across release.yml and ci.yml to clear the "Node.js 20 is deprecated" runner warning. The CI test matrix (16/18/20) and audit environment are left unchanged since they validate consumer Node compatibility. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/release.yml | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55c91e1..ff38cf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: node-version: [16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -51,10 +51,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js 18.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 18.x cache: 'npm' @@ -70,12 +70,12 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Use Node.js 18.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 18.x cache: 'npm' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89e477b..0beea0d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,15 +18,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 persist-credentials: false - - - name: Use Node.js 18.x - uses: actions/setup-node@v4 + + - name: Use Node.js 20.x + uses: actions/setup-node@v5 with: - node-version: 18.x + node-version: 20.x cache: 'npm' - name: Install dependencies