From e1d542825d984af910f06f8c6ca2191e9c802bda Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Thu, 1 Aug 2024 08:58:26 +0200 Subject: [PATCH] [TASK] Use "docker compose" in CI workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f13de0a..ab43b7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,8 @@ jobs: env: PHP_VERSION: ${{matrix.php}} TYPO3_VERSION: ${{matrix.typo3}} - run: docker-compose run --rm app composer build + run: docker compose run --rm app composer build - name: Cleanup if: ${{ always() }} - run: docker-compose down --volumes + run: docker compose down --volumes