Skip to content

Commit fe314a7

Browse files
authored
Merge pull request #3303 from donoghuc/docker-compose-fix
(maint) Stop installing docker-compose
2 parents b0b7725 + 2023632 commit fe314a7

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)