From a5e2547c337915f352b1a8758111cf90a125036b Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Tue, 11 Jun 2024 10:28:50 +0200 Subject: [PATCH] Add --with-all-dependencies to composer update --- test-and-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test-and-deploy.yml b/test-and-deploy.yml index a33577a..7b66e1f 100644 --- a/test-and-deploy.yml +++ b/test-and-deploy.yml @@ -713,14 +713,14 @@ Debug: - if [[ $DOINSTALL -eq 1 ]]; then composer install --no-interaction --no-progress --no-dev; fi - if [[ $DOINSTALL -eq 1 ]]; then git add * >/dev/null 2>&1 || true; fi - if [[ $DOINSTALL -eq 1 ]]; then echo "Initial installation" >/tmp/test.log; fi - - if [[ $DOINSTALL -eq 0 ]]; then composer update --no-interaction --no-progress --no-dev --dry-run $NAMESPACES_CHECK_UPDATE >/tmp/test.log 2>&1 || EC=$?; fi + - if [[ $DOINSTALL -eq 0 ]]; then composer update --with-all-dependencies --no-interaction --no-progress --no-dev --dry-run $NAMESPACES_CHECK_UPDATE >/tmp/test.log 2>&1 || EC=$?; fi - if [[ $EC -ne 0 ]]; then cat /tmp/test.log; exit 1; fi - EC=0 - grep "Nothing to modify in lock file" /tmp/test.log || EC=$? - if [[ $EC -ne 0 ]]; then DOUPDATE=1; fi - rm /tmp/test.log >/dev/null 2>&1 || true - if [[ $DOUPDATE -eq 0 ]]; then exit 0; fi - - composer update --no-interaction --no-progress --no-dev + - composer update --with-all-dependencies --no-interaction --no-progress --no-dev only: variables: - $CHECKUPDATES @@ -795,7 +795,7 @@ Debug: - !reference [.prepareaccess, before_script] - !reference [.preparecomposerplugins, before_script] script: - - composer update --no-interaction --no-progress + - composer update --with-all-dependencies --no-interaction --no-progress - composer diagnose --no-interaction || true - composer audit --no-dev --locked --format=table rules: @@ -832,7 +832,7 @@ Debug: - !reference [.prepareaccess, before_script] - !reference [.preparecomposerplugins, before_script] script: - - composer update --no-interaction --no-progress + - composer update --with-all-dependencies --no-interaction --no-progress - composer outdated --minor-only --strict --no-interaction $OUTDATED_EXTRAS - composer outdated --patch-only --strict --no-interaction $OUTDATED_EXTRAS rules: -- GitLab