Skip to content

Commit

Permalink
Use x.y.0 versions of the Go Toolchain only (#286)
Browse files Browse the repository at this point in the history
* Use `x.y.0` versions of the Go Toolchain only

* Update .github/renovate.json5

---------

Co-authored-by: Peter Sutter <[email protected]>
  • Loading branch information
rfranzke and petersutter authored Apr 23, 2024
1 parent 9192d85 commit 466bb10
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@
separateMajorMinor: true,
separateMinorPatch: true
},
{
// Do not update to patch versions of the Go Toolchain.
// Default golang images set the environment variable GOTOOLCHAIN=local
// and we don't want to enforce every (test-)image to be on the latest patch level.
matchManagers: ["gomod"],
matchUpdateTypes: ["patch"],
matchPackagePatterns: ["go"],
enabled: false
},
{
// Group github-actions in one PR.
groupName: "github-actions",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gardener/terminal-controller-manager

go 1.22.2
go 1.22.0

require (
github.com/gardener/gardener v1.93.0
Expand Down

0 comments on commit 466bb10

Please sign in to comment.