From ce1e75a472ed4a9356bfa2150ecd53408358a2ad Mon Sep 17 00:00:00 2001 From: kdn0325 Date: Wed, 3 Sep 2025 02:04:31 +0900 Subject: [PATCH] ci: enhance Corepack setup for Yarn 3.6.4 in GitHub Actions --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40f70ef..7c470d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,13 +22,16 @@ jobs: node-version: 20 cache: 'yarn' - - name: Enable Corepack + - name: Enable Corepack and prepare Yarn run: | corepack enable + corepack prepare yarn@3.6.4 --activate + yarn set version 3.6.4 + which yarn yarn --version - name: Install dependencies - run: yarn install --immutable + run: yarn install - name: Setup Git run: |