Skip to content

Commit 356c03c

Browse files
authored
fix: use the correct docker compose command in actions (#869)
update the integration-test.yaml docker-compose command updated to docker compose
1 parent 9aaa2cc commit 356c03c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/integration-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v3
1919
- name: Start compose
20-
run: docker-compose -f docker-compose-test.yaml up --build --exit-code-from quest
20+
run: docker compose -f docker-compose-test.yaml up --build --exit-code-from quest
2121
- name: Stop compose
2222
if: always()
23-
run: docker-compose -f docker-compose-test.yaml down
23+
run: docker compose -f docker-compose-test.yaml down
2424

2525
docker-compose-distributed-test:
2626
name: Quest Smoke and Load Tests for Distributed deployments
@@ -29,7 +29,7 @@ jobs:
2929
- name: Checkout
3030
uses: actions/checkout@v3
3131
- name: Start compose
32-
run: docker-compose -f docker-compose-distributed-test.yaml up --build --exit-code-from quest
32+
run: docker compose -f docker-compose-distributed-test.yaml up --build --exit-code-from quest
3333
- name: Stop compose
3434
if: always()
35-
run: docker-compose -f docker-compose-distributed-test.yaml down
35+
run: docker compose -f docker-compose-distributed-test.yaml down

0 commit comments

Comments
 (0)