Skip to content

Commit 2023632

Browse files
committed
(maint) Stop installing docker-compose
Docker now ships a `docker compose` CLI, no need to install `docker-compose` on test runners. !no-release-notes
1 parent b0b7725 commit 2023632

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/actions/docker_setup/action.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ runs:
66
- name: Bring up containers
77
shell: bash
88
run: |
9-
sudo apt install docker-compose
10-
docker-compose -f spec/docker-compose.yml build --parallel
11-
docker-compose -f spec/docker-compose.yml up -d
9+
docker compose -f spec/docker-compose.yml build --parallel
10+
docker compose -f spec/docker-compose.yml up -d

.github/actions/sudo_setup/action.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ runs:
66
- name: Bring up containers
77
shell: bash
88
run: |
9-
sudo apt install docker-compose
10-
docker-compose -f spec/docker-compose.yml build --parallel
11-
docker-compose -f spec/docker-compose.yml up -d
9+
docker compose -f spec/docker-compose.yml build --parallel
10+
docker compose -f spec/docker-compose.yml up -d
1211
- name: Create non-sudo user
1312
shell: bash
1413
run: |

0 commit comments

Comments
 (0)