From 0462c8afc24113903a3de74801e72db4fe73ada1 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Fri, 4 Oct 2024 10:24:20 +0200 Subject: [PATCH] chore(deps): disable Renovate updates for OpenShift and Ginkgo and Gomega libs These modules require Go 1.22+, which we do not support at the moment. Also, the previous exclusion rule got `github.com/openshift` appeared to not be working as expected, probably because of the `matchUpdateTypes` field, which did not seem to handle pseudo-versions from commits in that repo. --- .github/renovate.json | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 5b266b1c..9eba552a 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -57,7 +57,8 @@ ], "matchUpdateTypes": [ "minor", - "patch" + "patch", + "digest" ], "baseBranches": [ "main" @@ -79,7 +80,8 @@ "go" ], "matchUpdateTypes": [ - "patch" + "patch", + "digest" ], "baseBranches": [ "/^release-1\\..*/", @@ -95,8 +97,8 @@ ] }, { - "description": "ginkgo: minor and patch updates in main", - "enabled": true, + "description": "ginkgo: minor and patch updates in main (disabled until we support Go 1.22+, which is required since ginkgo 2.20.2)", + "enabled": false, "groupName": "ginkgo main", "matchDatasources": [ "go" @@ -114,8 +116,8 @@ ] }, { - "description": "ginkgo: patch updates only in 1.y", - "enabled": true, + "description": "ginkgo: patch updates only in 1.y (disabled until we support Go 1.22+, which is required since ginkgo 2.20.2)", + "enabled": false, "groupName": "ginkgo 1.y", "matchDatasources": [ "go" @@ -133,8 +135,8 @@ ] }, { - "description": "gomega: minor and patch updates in main", - "enabled": true, + "description": "gomega: minor and patch updates in main (disabled until we support Go 1.22+, which is required since gomega 1.34.2)", + "enabled": false, "groupName": "gomega main", "matchDatasources": [ "go" @@ -152,8 +154,8 @@ ] }, { - "description": "gomega: patch updates only in 1.y", - "enabled": true, + "description": "gomega: patch updates only in 1.y (disabled until we support Go 1.22+, which is required since gomega 1.34.2)", + "enabled": false, "groupName": "gomega 1.y", "matchDatasources": [ "go"