Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into master_24_08_27_01
Browse files Browse the repository at this point in the history
  • Loading branch information
slievrly committed Aug 29, 2024
2 parents 5b4a5f2 + ee69491 commit 4dde004
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/E2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ jobs:
fail-fast: false
max-parallel: 2
steps:
- name: Uninstall Docker Compose v2
run: sudo rm -f /usr/local/bin/docker-compose

- name: Install Docker Compose v1
run: |
DOCKER_COMPOSE_VERSION=1.29.2
sudo curl -L "https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
- name: Verify Docker Compose v1 installation
run: docker-compose --version

- name: Check out code into
uses: actions/checkout@v3

Expand Down

0 comments on commit 4dde004

Please sign in to comment.