From 0b130be081141331a56df9b444990f5177b69fe9 Mon Sep 17 00:00:00 2001 From: jeremydolle Date: Tue, 8 Oct 2024 14:16:31 +0200 Subject: [PATCH] chore: Update yarn installation command to use Yarn v4 --- .github/actions/deps-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/deps-setup/action.yml b/.github/actions/deps-setup/action.yml index 544d2b22..4a46e479 100644 --- a/.github/actions/deps-setup/action.yml +++ b/.github/actions/deps-setup/action.yml @@ -15,7 +15,7 @@ runs: cache-dependency-path: ${{ inputs.working_directory }}/yarn.lock - name: Install Yarn v4 shell: bash - run: corepack enable && corepack prepare yarn@4.0.0 --activate + run: corepack enable && corepack prepare yarn@4 --activate - name: Install dependencies run: yarn install --frozen-lockfile shell: bash