From 8373450fd03c5235bed0f6fb3b9b0d6b8c3972bf Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Mon, 11 Sep 2023 13:06:43 +0200 Subject: [PATCH] [TASK] Use Composer 2.6.2 for build See https://github.com/composer/composer/releases/tag/2.6.2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea54eaa..e7614a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: env: PHP_VERSION: ${{matrix.php}} TYPO3_VERSION: ${{matrix.typo3}} - run: docker-compose run --rm app composer build + run: docker-compose run --rm app sh -c "sudo composer self-update 2.6.2 && composer build" - name: Cleanup if: ${{ always() }}