From 98884d36fa2a3bdb94d37b2c6f506894fa64d5a6 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 28 Jun 2022 21:30:42 +0200 Subject: [PATCH] [BUGFIX] Block Dependabot from breaking upgrades (#469) composer-noramlize >= 2.2.0 will conflicts with our supported PHP version range, as does PHPUnit 9.x (and 10.x will too). So we need to configure Dependabot to stay below these breaking versions. Fixes #467 --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8453db0..3e8819a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,10 @@ updates: allow: - dependency-type: "development" ignore: + - dependency-name: "ergebnis/composer-normalize" + versions: [ "^2.20" ] + - dependency-name: "phpunit/phpunit" + versions: [ "^9.0", "^10.0" ] - dependency-name: "symfony/yaml" - dependency-name: "typo3/cms-*" versioning-strategy: "increase"