From 0657fca00311ffe4bb4de6b5a7ef8668d8c042fe Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 1 Dec 2025 00:40:00 +0000 Subject: [PATCH] Fix docker-compose command not found in integration tests Replace deprecated docker-compose with docker compose (Docker CLI plugin) on modern Ubuntu runners. --- .github/workflows/test-updates.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-updates.yml b/.github/workflows/test-updates.yml index f98d96afa..ab3ea7533 100644 --- a/.github/workflows/test-updates.yml +++ b/.github/workflows/test-updates.yml @@ -82,11 +82,11 @@ jobs: MOCK_RATE_LIMIT: "false" MOCK_STALE_RELEASE: "false" run: | - docker-compose -f docker-compose.test.yml up -d + docker compose -f docker-compose.test.yml up -d sleep 15 # Wait for services to be ready npx playwright test tests/00-diagnostic.spec.ts --reporter=list,html UPDATE_API_BASE_URL=http://localhost:7655 go test ../../tests/integration/api -run TestUpdateFlowIntegration -count=1 - docker-compose -f docker-compose.test.yml down -v + docker compose -f docker-compose.test.yml down -v - name: Upload test results if: always() @@ -109,7 +109,7 @@ jobs: if: always() working-directory: tests/integration run: | - docker-compose -f docker-compose.test.yml down -v || true + docker compose -f docker-compose.test.yml down -v || true docker system prune -f || true - name: Comment PR with test results