diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 24430428..e6061097 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -144,7 +144,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run Integration Tests - run: docker-compose -f ./integration/docker-compose.ci.alpha.yml up --exit-code-from cypress + run: docker compose -f ./integration/docker-compose.ci.alpha.yml up --exit-code-from cypress - uses: actions/upload-artifact@v3 if: always() with: diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index a50ce873..51397acf 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -177,7 +177,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run Integration Tests - run: docker-compose -f ./integration/docker-compose.ci.canary.yml up --exit-code-from cypress + run: docker compose -f ./integration/docker-compose.ci.canary.yml up --exit-code-from cypress - uses: actions/upload-artifact@v3 if: always() with: @@ -216,4 +216,3 @@ jobs: ignore-unfixed: true vuln-type: 'os,library' severity: 'CRITICAL' - \ No newline at end of file diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 907b1530..9f7ff4a8 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -177,11 +177,10 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run Integration Tests - run: docker-compose -f ./integration/docker-compose.ci.master.yml up --exit-code-from cypress + run: docker compose -f ./integration/docker-compose.ci.master.yml up --exit-code-from cypress - uses: actions/upload-artifact@v3 if: always() with: name: Test videos path: integration/cypress/videos retention-days: 14 -