Skip to content

Commit

Permalink
renovate: migrate config, some matchers were deprecated
Browse files Browse the repository at this point in the history
It looks like matchPackagesPrefixes and matchPackagePatterns got removed
in favor of matchPackageNames.

Signed-off-by: Mahe Tardy <[email protected]>
  • Loading branch information
mtardy committed Nov 18, 2024
1 parent a896d34 commit 735df9e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@
"matchPackageNames": [
"go", // golang version directive upgrade in go.mod
],
"matchPackagePrefixes": [
"docker.io/library/", // official Docker images
"github.com/golang/", // Golang official org
"golang.org/x/", // Golang official experimental org
"google.golang.org/", // Google official repo for api/genproto/grpc/protobuf
"github.com/google/", // Google official github org
"k8s.io/", // Kubernetes official repo
"sigs.k8s.io/", // Kubernetes official SIG repo
"matchPackageNames": [
"docker.io/library/**", // official Docker images
"github.com/golang/**", // Golang official org
"golang.org/x/**", // Golang official experimental org
"google.golang.org/**", // Google official repo for api/genproto/grpc/protobuf
"github.com/google/**", // Google official github org
"k8s.io/**", // Kubernetes official repo
"sigs.k8s.io/**", // Kubernetes official SIG repo
"quay.io/lvh-images/kernel-images", // LVH images
],
"matchUpdateTypes": [
Expand Down Expand Up @@ -319,7 +319,7 @@
{
// no updates into stable branches (apart from security ones)
"enabled": false,
"matchPackagePatterns": ["*"],
"matchPackageNames": ["*"],
"matchBaseBranches": [
"v1.0",
"v1.1",
Expand Down Expand Up @@ -447,7 +447,7 @@
},
{
"enabled": false,
"matchPackagePatterns": [
"matchPackageNames": [
// k8s dependencies will be updated manually along cilium updates
"k8s\\.io/*",
"sigs\\.k8s\\.io/*"
Expand Down

0 comments on commit 735df9e

Please sign in to comment.