From 75922e11d1aaa54bf7e125233853413e88e9474d Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 29 Nov 2023 09:19:14 +0100 Subject: [PATCH] Use "composer outdated" instead of "composer show" (because PHPUnit >= 9.6 does not depend on abandoned packages) --- .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 e3d5a75b656..85e2ba2fb8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: ./tools/composer --no-ansi install - name: Ensure that dependencies are up-to-date - run: ./tools/composer show --no-ansi --minor-only --latest --direct --outdated --strict + run: ./tools/composer outdated --no-ansi --strict coding-guidelines: name: Coding Guidelines