From 6ee1a0ff3ba9bf390fadbc9af7466715fa7b5a1d Mon Sep 17 00:00:00 2001 From: David Bimmler Date: Wed, 22 Jan 2025 13:14:43 +0100 Subject: [PATCH] renovate: apply migration changes These are the actual changes to the schema, as gleaned from the messy diff of https://github.com/cilium/cilium-cli/pull/2913. Signed-off-by: David Bimmler --- .github/renovate.json5 | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b35da89e22..173cc03b67 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,7 +1,7 @@ { $schema: "https://docs.renovatebot.com/renovate-schema.json", extends: [ - "config:base", + "config:recommended", ":gitSignOff", "helpers:pinGitHubActionDigests", ], @@ -44,7 +44,7 @@ { groupName: "all github action dependencies", groupSlug: "all-github-action", - matchPaths: [ + matchFileNames: [ ".github/workflows/**", "action.yaml", ], @@ -86,7 +86,7 @@ { // Avoid updating patch releases of golang in go.mod enabled: "false", - matchFiles: [ + matchFileNames: [ "go.mod", ], matchDepNames: [ @@ -112,7 +112,7 @@ { // Images that directly use docker.io/library/golang for building. groupName: "golang-images", - matchFiles: [ + matchFileNames: [ "Dockerfile", "Makefile", ], @@ -144,8 +144,9 @@ ], }, ], - regexManagers: [ + customManagers: [ { + customType: "regex", fileMatch: [ "^\\.github/workflows/[^/]+\\.yaml$", "^action.yaml$", @@ -159,6 +160,7 @@ ], }, { + customType: "regex", fileMatch: [ "^Makefile$", ], @@ -171,6 +173,7 @@ ], }, { + customType: "regex", fileMatch: [ "^go\\.mod$", ],