From 8df57d05f50351e6941bb69e5c63628e37f02010 Mon Sep 17 00:00:00 2001 From: Waqar Ali Date: Thu, 4 Jun 2026 10:19:50 +0200 Subject: [PATCH] fix: remove --frozen-lockfile from yarn install in setup-node-with-cache Co-Authored-By: Claude Sonnet 4.6 --- shared-actions/setup-node-with-cache/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-actions/setup-node-with-cache/action.yml b/shared-actions/setup-node-with-cache/action.yml index 03232b0..555b8f4 100644 --- a/shared-actions/setup-node-with-cache/action.yml +++ b/shared-actions/setup-node-with-cache/action.yml @@ -333,7 +333,7 @@ runs: - name: Install Node.js dependencies if: ${{ !env.ACT && (steps.yarn-cache.outputs.cache-hit != 'true' || steps.check-install-needed.outputs.needs-install == 'true') }} shell: bash - run: yarn install --frozen-lockfile --ignore-scripts + run: yarn install --ignore-scripts env: NODE_AUTH_TOKEN: ${{ inputs.GH_TOKEN }} PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'