From e129c3a65c694e8b144a7857617d1d6448765700 Mon Sep 17 00:00:00 2001 From: dev-minsoo Date: Fri, 17 Apr 2026 18:50:18 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=9B=8C=ED=81=AC=ED=94=8C=EB=A1=9C?= =?UTF-8?q?=20=EC=8B=A4=ED=96=89=20=EB=B2=94=EC=9C=84=EC=99=80=20Node=20?= =?UTF-8?q?=EB=9F=B0=ED=83=80=EC=9E=84=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 7 +++++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8315020..7bd941c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: pull_request: - push: - branches: - - main + +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: lint-and-build: @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 cache: npm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 484205b..63d8794 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,9 @@ on: branches: - main +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + permissions: contents: read @@ -19,12 +22,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 cache: npm