Skip to content

Commit 944a865

Browse files
authored
Install v2.20.0 of docker-compose-plugin (#6997)
Work around the bug[1] in docker-compose-plugin v2.19.1, which is included in the current github actions ubuntu 20.04 runner image[2]. [1] docker/compose#10777 [2] actions/runner-images#7916 Part of #6998
1 parent f7b79d0 commit 944a865

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/boulder-ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ jobs:
7373
- uses: actions/checkout@v3
7474
with:
7575
persist-credentials: false
76+
77+
# TODO(#6998): Remove this step when the ubuntu-20.04 image has v2.20.0+.
78+
# Install instructions copied from https://docs.docker.com/compose/install/linux/#install-the-plugin-manually
79+
- name: Update docker compose plugin
80+
run: mkdir -p ${DOCKER_CONFIG:-$HOME/.docker}/cli-plugins && curl -SL https://github.com/docker/compose/releases/download/v2.20.0/docker-compose-linux-x86_64 -o ${DOCKER_CONFIG:-$HOME/.docker}/cli-plugins/docker-compose && chmod +x ${DOCKER_CONFIG:-$HOME/.docker}/cli-plugins/docker-compose
7681

7782
- name: Docker Login
7883
# You may pin to the exact commit or the version.

0 commit comments

Comments
 (0)