From e394f986870f565eb20a722c0a4fcd71d5b353ed Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sat, 23 Aug 2025 20:22:11 -0700 Subject: [PATCH] perf: Skip Docker Compose installation in showtime workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add install-docker-compose: false to setup-docker action since showtime workflows don't need Docker Compose. This saves 1-2 minutes by skipping unnecessary apt operations. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/showtime-trigger.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/showtime-trigger.yml b/.github/workflows/showtime-trigger.yml index 2436cef5d25..2dec40c5759 100644 --- a/.github/workflows/showtime-trigger.yml +++ b/.github/workflows/showtime-trigger.yml @@ -141,6 +141,7 @@ jobs: dockerhub-user: ${{ env.DOCKERHUB_USER }} dockerhub-token: ${{ env.DOCKERHUB_TOKEN }} build: "true" + install-docker-compose: "false" - name: Setup supersetbot if: steps.check.outputs.build_needed == 'true'