From 387356aef3c6391ce345ef3fa2d373cced9a2959 Mon Sep 17 00:00:00 2001 From: Adam Cmiel Date: Mon, 3 Feb 2025 13:10:25 +0100 Subject: [PATCH] renovate: follow the 1.x tag of go-toolset (#162) The go-toolset image [1] recently started adding the version of the underlying RHEL OS as a floating tag. The image now uses two versioning schemes: - based on RHEL version (latest is 9.5) - based on Go version (latest is 1.22.9) The Go version is much more relevant than the RHEL version, so make Renovate follow the Go version tag. [1]: https://catalog.redhat.com/software/containers/ubi9/go-toolset/61e5c00b4ec9945c18787690 Signed-off-by: Adam Cmiel --- renovate.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..7ecbeef --- /dev/null +++ b/renovate.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "packageRules": [ + { + "matchPackageNames": [ + "registry.access.redhat.com/ubi9/go-toolset" + ], + "allowedVersions": [ + "<2" + ] + } + ] +}