From fde304d181739de162b4a4cd81e397706daff7e3 Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Fri, 23 Feb 2024 17:54:45 -0700 Subject: [PATCH] ci: update renovate config format --- .github/renovate.json | 38 +++++++++++--------------------------- 1 file changed, 11 insertions(+), 27 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 63a72137..07ba84d3 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,33 +1,20 @@ { - "extends": [ - "config:base" - ], + "extends": ["config:recommended"], "packageRules": [ { - "matchManagers": [ - "dockerfile" - ], - "matchUpdateTypes": [ - "pin", - "digest" - ], + "matchManagers": ["dockerfile"], + "matchUpdateTypes": ["pin", "digest"], "automerge": true, "automergeStrategy": "squash" }, { - "matchPackagePatterns": [ - "^golang.*" - ], + "matchPackagePatterns": ["^golang.*"], "groupName": "golang", "groupSlug": "golang" }, { - "matchFileNames": [ - ".github/workflows/*.yml" - ], - "matchDepTypes": [ - "action" - ], + "matchFileNames": [".github/workflows/*.yml"], + "matchDepTypes": ["action"], "matchCurrentVersion": "!/^0/", "automerge": true, "automergeStrategy": "squash", @@ -35,16 +22,13 @@ "commitMessageSuffix": " [release skip]" } ], - "regexManagers": [ + "customManagers": [ { - "fileMatch": [ - "^.github/workflows/.*" - ], - "matchStrings": [ - "go-version: (?.*?)\n" - ], + "customType": "regex", + "fileMatch": ["^.github/workflows/.*"], + "matchStrings": ["go-version: (?.*?)\n"], "depNameTemplate": "golang", "datasourceTemplate": "docker" } ] -} \ No newline at end of file +}