From 0fc9b7f0e47b030d4f5a07699a622ded8c8bc310 Mon Sep 17 00:00:00 2001 From: Marc Philipp Date: Thu, 12 Sep 2024 09:45:18 +0200 Subject: [PATCH] Configure rule to stick to JUnit baseline --- .github/renovate.json5 | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index ea024d3..7651cf8 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,31 +5,13 @@ ], packageRules: [ { - matchCurrentValue: '/^2\\./', - allowedVersions: '(,3.0)', - matchPackageNames: [ - 'org.codehaus.groovy:{/,}**', - ], - }, - { - matchCurrentValue: '/^4\\./', - allowedVersions: '(,5.0)', - matchPackageNames: [ - 'org.apache.groovy:{/,}**', - ], - }, - { - matchCurrentValue: '/^1\\./', - allowedVersions: '/^1\\..*-groovy-2\\.*/', - matchPackageNames: [ - 'org.spockframework:{/,}**', + allowedVersions: '(,5.8)', + description: [ + 'Stick to 5.7.x as required baseline for JUnit', ], - }, - { - allowedVersions: '!/-SNAPSHOT$/', matchPackageNames: [ - 'org.opentest4j.reporting:{/,}**', - ], + 'org.junit:{/,}**' + ] }, ], }