From 217810ee74894336703c7afd0d9cbee7c7b5b99f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 26 Sep 2025 13:25:17 +0000 Subject: [PATCH] Migrate config renovate.json --- renovate.json | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/renovate.json b/renovate.json index 520e340f..5fdfb72d 100644 --- a/renovate.json +++ b/renovate.json @@ -1,21 +1,27 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base", + "config:recommended", "group:allNonMajor" ], "customManagers": [ { "customType": "regex", - "fileMatch": ["^\\.github/workflows/.+?\\.yaml$"], - "matchStrings": ["dotnet-version: (?.+?)\\s"], + "managerFilePatterns": [ + "/^\\.github/workflows/.+?\\.yaml$/" + ], + "matchStrings": [ + "dotnet-version: (?.+?)\\s" + ], "datasourceTemplate": "dotnet-version", "depNameTemplate": "dotnet-sdk", "depTypeTemplate": "action" }, { "customType": "regex", - "fileMatch": ["(^|/|\\.).*(csproj|pubxml)$"], + "managerFilePatterns": [ + "/(^|/|\\.).*(csproj|pubxml)$/" + ], "matchStrings": [ "net(?[^<]*)" ], @@ -26,7 +32,9 @@ ], "packageRules": [ { - "matchManagers": ["nuget"], + "matchManagers": [ + "nuget" + ], "matchFileNames": [ "ArchUnitNET.MSTestV2/ArchUnitNET.MSTestV2.csproj", "ArchUnitNET.NUnit/ArchUnitNET.NUnit.csproj", @@ -34,12 +42,21 @@ "ArchUnitNET.xUnitV3/ArchUnitNET.xUnitV3.csproj", "ArchUnitNET.TUnit/ArchUnitNET.TUnit.csproj" ], - "matchPackagePrefixes": ["xunit", "nunit", "NUnit", "MSTest", "TUnit"], - "matchPackageNames": ["Microsoft.NET.Test.Sdk", "JetBrains.Annotations"], + "matchPackageNames": [ + "Microsoft.NET.Test.Sdk", + "JetBrains.Annotations", + "xunit{/,}**", + "nunit{/,}**", + "NUnit{/,}**", + "MSTest{/,}**", + "TUnit{/,}**" + ], "enabled": false }, { - "matchDepNames": ["dotnet-sdk"], + "matchDepNames": [ + "dotnet-sdk" + ], "groupName": "dotnet version" } ]