From 1d673d6e78133c5f1c570c93f6bcbac21a250d1b Mon Sep 17 00:00:00 2001 From: Willie Ruemmele Date: Wed, 19 Aug 2026 12:42:43 -0600 Subject: [PATCH] fix: pass yarn cache inputs to ctcClose in promote workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same issue as the ctcOpen fix — ctcClose.yml also defaults to npm/package-lock.json caching, which fails because this repo uses yarn. --- .github/workflows/promote.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 07b5128e..8dc3e841 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -209,6 +209,8 @@ jobs: with: changeCaseId: ${{ needs.open-ctc-or-skip.outputs.changeCaseId }} nodeVersion: ${{ vars.NODE_VERSION_OVERRIDE || 'lts/*' }} + package-manager: yarn + cache-dependency-path: yarn.lock ctcCloseFail: needs: [open-ctc-or-skip, npm-promote, docker-promote, oclif-promote] @@ -218,4 +220,6 @@ jobs: with: changeCaseId: ${{ needs.open-ctc-or-skip.outputs.changeCaseId }} nodeVersion: ${{ vars.NODE_VERSION_OVERRIDE || 'lts/*' }} + package-manager: yarn + cache-dependency-path: yarn.lock status: Not Implemented