From e19841fc46ac045a1cd8439cf996d87c236eb4f2 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sat, 23 Aug 2025 16:52:41 -0700 Subject: [PATCH] fix: Add checkout step before using local actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow needs to checkout the repository before using local actions like setup-docker. This resolves the 'Can't find action.yml' error. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/showtime-trigger.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/showtime-trigger.yml b/.github/workflows/showtime-trigger.yml index 7bb4a9a9466..29c0673633f 100644 --- a/.github/workflows/showtime-trigger.yml +++ b/.github/workflows/showtime-trigger.yml @@ -89,6 +89,12 @@ jobs: echo "deploy_needed=$DEPLOY" >> $GITHUB_OUTPUT echo "pr_number=$PR_NUM" >> $GITHUB_OUTPUT + - name: Checkout repository for local actions + if: steps.check.outputs.build_needed == 'true' + uses: actions/checkout@v4 + with: + persist-credentials: false + - name: Setup Docker Environment if: steps.check.outputs.build_needed == 'true' uses: ./.github/actions/setup-docker