From 4f9ff49aaf46d50e832a5df600566973dfc2b07e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 18:06:37 +0000 Subject: [PATCH] Revert nonessential setup action edits --- .github/actions/setup-mysql-cluster/action.yml | 2 +- .github/actions/setup-postgres-cluster/action.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-mysql-cluster/action.yml b/.github/actions/setup-mysql-cluster/action.yml index cd20575216..c152df1912 100644 --- a/.github/actions/setup-mysql-cluster/action.yml +++ b/.github/actions/setup-mysql-cluster/action.yml @@ -3,7 +3,7 @@ description: Deploy MySQL on Docker inputs: provider: default: "docker" - description: "Deployment provider (currently only docker is supported)" + description: "Deployment provider: docker" runs: using: composite diff --git a/.github/actions/setup-postgres-cluster/action.yml b/.github/actions/setup-postgres-cluster/action.yml index b159ae3afc..2626d4f418 100644 --- a/.github/actions/setup-postgres-cluster/action.yml +++ b/.github/actions/setup-postgres-cluster/action.yml @@ -22,7 +22,6 @@ runs: run: | if [ "${{ inputs.provider }}" = "docker" ]; then REPO_ROOT=$(git rev-parse --show-toplevel) - "${REPO_ROOT}/.github/scripts/pull-test-deps-images.sh" docker compose -f "${REPO_ROOT}/tests-integration/fixtures/docker-compose.yml" up -d --wait postgres exit 0 fi