Skip to content

Commit eadcea4

Browse files
authored
chore: pin Docker Compose version due to this: actions/runner-images#12237 (#78)
1 parent b387390 commit eadcea4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/im-build-test-deploy.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,14 @@ jobs:
182182
echo "VERSION=$VERSION"
183183
184184
# TODO: Split here... "Build"
185+
- name: Pin Docker Compose to version 2.37.1 (delete this step once we're above version 2.36.0 by default)
186+
run: |
187+
docker compose version
188+
sudo rm -f /usr/local/bin/docker-compose
189+
mkdir -p ~/.docker/cli-plugins/
190+
curl -SL https://github.com/docker/compose/releases/download/v2.37.1/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
191+
chmod +x ~/.docker/cli-plugins/docker-compose
192+
185193
- name: Build image
186194
run: make docker-image tag=$VERSION
187195

0 commit comments

Comments
 (0)