Revert "ci: Pin Compose version to v2.2.3"

This reverts commit 897720fa91.

A new version of Compose was released, with a fix for the issue we were
encountering.
This commit is contained in:
Antoine Cotten 2022-03-09 01:57:19 +01:00
parent 4fe6f68339
commit 12dc0a4b74
No known key found for this signature in database
GPG Key ID: 94637E68D4A79DD0
1 changed files with 1 additions and 3 deletions

View File

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