From 696ec68eb0b5174e2f1153c5b252b084e8f859f7 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 3 Nov 2021 01:05:16 +0100 Subject: [PATCH] [TASK] Only install Composer packages once in a CI build (#330) If the CI build will do a composer update in the next step anyway, there is no need to actually install any packages when requiring the desired TYPO3 version. Fixes #324 --- .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 80bf030..da5b6fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: TYPO3: "${{ matrix.typo3-version }}" name: "Install TYPO3 Core" run: | - composer require --no-progress typo3/minimal:"$TYPO3" + composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3" composer show - if: "matrix.composer-dependencies == 'lowest'" name: "Install lowest dependencies with composer" @@ -175,7 +175,7 @@ jobs: TYPO3: "${{ matrix.typo3-version }}" name: "Install TYPO3 Core" run: | - composer require --no-progress typo3/minimal:"$TYPO3" + composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3" composer show - if: "matrix.composer-dependencies == 'lowest'" name: "Install lowest dependencies with composer"