From 843d3ddbe9d640609bd085934a69675f2f8efa3c Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Wed, 9 Oct 2024 14:20:12 +0200 Subject: [PATCH] ci: use docker compose --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/infection.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8dff1c..8d4dc8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,8 @@ jobs: with: fetch-depth: 2 - - name: "Build the docker-compose stack" - run: "docker-compose -f tests/docker-compose.yaml up -d" + - name: "Build the docker compose stack" + run: "docker compose -f tests/docker-compose.yaml up -d" - name: "Install PHP" uses: "shivammathur/setup-php@v2" @@ -96,8 +96,8 @@ jobs: with: fetch-depth: 2 - - name: "Build the docker-compose stack" - run: "docker-compose -f tests/docker-compose.yaml up -d" + - name: "Build the docker compose stack" + run: "docker compose -f tests/docker-compose.yaml up -d" - name: "Install PHP" uses: "shivammathur/setup-php@v2" diff --git a/.github/workflows/infection.yml b/.github/workflows/infection.yml index 95250e7..d4108b6 100644 --- a/.github/workflows/infection.yml +++ b/.github/workflows/infection.yml @@ -16,8 +16,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Build the docker-compose stack - run: docker-compose -f tests/docker-compose.yaml up -d + - name: Build the docker compose stack + run: docker compose -f tests/docker-compose.yaml up -d - name: Install PHP uses: shivammathur/setup-php@v2