Skip to content

Commit

Permalink
chore(deps): make sure Renovate updates for OpenShift, Ginkgo and Gom…
Browse files Browse the repository at this point in the history
…ega modules are disabled (#305)

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.
  • Loading branch information
rm3l authored Oct 7, 2024
1 parent dc0e5c4 commit 67b968b
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
],
"matchUpdateTypes": [
"minor",
"patch"
"patch",
"digest"
],
"baseBranches": [
"main"
Expand All @@ -79,7 +80,8 @@
"go"
],
"matchUpdateTypes": [
"patch"
"patch",
"digest"
],
"baseBranches": [
"/^release-1\\..*/",
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 67b968b

Please sign in to comment.