From e2ed696619ed29bc3e8e6ff08ff23fee44b51b44 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Sun, 20 Apr 2025 10:05:30 -0700 Subject: [PATCH] fix: docker-compose link since latest release --- buildscripts/minio-upgrade.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildscripts/minio-upgrade.sh b/buildscripts/minio-upgrade.sh index ce5258319..2dac2cdcd 100755 --- a/buildscripts/minio-upgrade.sh +++ b/buildscripts/minio-upgrade.sh @@ -69,8 +69,9 @@ __init__() { ## this is needed because github actions don't have ## docker-compose on all runners - go install github.com/docker/compose/v2/cmd@latest - mv -v /tmp/gopath/bin/cmd /tmp/gopath/bin/docker-compose + COMPOSE_VERSION=v2.35.1 + mkdir -p /tmp/gopath/bin/ + wget -O /tmp/gopath/bin/docker-compose https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-linux-x86_64 cleanup