diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5fd2bf..b5b0c95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,8 @@ jobs: ##################################################### - name: Prepare environment + env: + COMPOSE_VERSION: v2.2.3 run: | # Enable support for Compose V2 @@ -32,7 +34,7 @@ jobs: # https://docs.docker.com/compose/cli-command/#install-on-linux mkdir -p ~/.docker/cli-plugins - curl -sL "https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64" -o ~/.docker/cli-plugins/docker-compose + curl -sL "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-linux-x86_64" -o ~/.docker/cli-plugins/docker-compose chmod +x ~/.docker/cli-plugins/docker-compose docker compose version