From 965b12cdecc09a355d8ff8b0f8860c9d872b240f Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 30 Nov 2021 10:31:25 +0100 Subject: [PATCH] Allow alpha and above for latest deps build to catch dependency problems earlier next time --- .github/workflows/continuous-integration.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 21e583cc6..d723c435a 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -90,6 +90,10 @@ jobs: - name: "Remove platform config to get latest dependencies for current PHP version when build is not locked" run: "composer config platform --unset" + - name: "Allow alpha releases for latest-deps builds to catch problems earlier" + if: "contains(matrix.dependencies, 'highest')" + run: "composer config minimum-stability alpha" + - name: "Update dependencies from composer.json using composer binary provided by system" if: "contains(matrix.dependencies, 'highest') || contains(matrix.dependencies, 'lowest')" run: "composer update ${{ env.COMPOSER_UPDATE_FLAGS }} ${{ env.COMPOSER_FLAGS }}"