From 5b2c1230d38ed3f7b7a7c625069dbdc534cbf85e Mon Sep 17 00:00:00 2001 From: Salah-Eddine Saakoun Date: Fri, 18 Sep 2026 22:36:04 +0200 Subject: [PATCH 1/3] fix: stop Corepack prompting in the Renovate container --- .github/workflows/renovate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 72d84b24383..9d153602231 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -40,4 +40,6 @@ jobs: RENOVATE_TOKEN: ${{ steps.get-token.outputs.token }} RENOVATE_REPOSITORIES: ${{ github.repository }} RENOVATE_PLATFORM: github + # Corepack otherwise blocks on an interactive prompt before downloading the pinned Yarn, so `yarn install` fails and Renovate has nothing to commit. + COREPACK_ENABLE_DOWNLOAD_PROMPT: '0' LOG_LEVEL: ${{ inputs.log-level || 'info' }} From 839e0a7db0759c8b9cb8bcb9050849d861959ba5 Mon Sep 17 00:00:00 2001 From: Salah-Eddine Saakoun Date: Fri, 18 Sep 2026 22:37:37 +0200 Subject: [PATCH 2/3] chore: drop redundant comment --- .github/workflows/renovate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 9d153602231..f6493e02af5 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -40,6 +40,5 @@ jobs: RENOVATE_TOKEN: ${{ steps.get-token.outputs.token }} RENOVATE_REPOSITORIES: ${{ github.repository }} RENOVATE_PLATFORM: github - # Corepack otherwise blocks on an interactive prompt before downloading the pinned Yarn, so `yarn install` fails and Renovate has nothing to commit. COREPACK_ENABLE_DOWNLOAD_PROMPT: '0' LOG_LEVEL: ${{ inputs.log-level || 'info' }} From 8cc066be0d040f07dc8d0ed1fce4db9af831dfd9 Mon Sep 17 00:00:00 2001 From: Salah-Eddine Saakoun Date: Fri, 18 Sep 2026 22:59:58 +0200 Subject: [PATCH 3/3] fix: pass the Corepack variable into the container --- .github/workflows/renovate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index f6493e02af5..08c7b1c919b 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -36,6 +36,8 @@ jobs: - name: Run Renovate uses: renovatebot/github-action@dcfba84a42d1b5d5e49bf131b1bf53511851a123 # v46.3.1 + with: + additional-env-list: COREPACK_ENABLE_DOWNLOAD_PROMPT env: RENOVATE_TOKEN: ${{ steps.get-token.outputs.token }} RENOVATE_REPOSITORIES: ${{ github.repository }}