Skip to content

Commit

Permalink
go.mod: require latest patch version
Browse files Browse the repository at this point in the history
There's a case for being conservative with the required version when a
module is imported by others. Given that now, 99.9% of Hubble's code
lives in github.com/cilium/cilium, there's no point trying to require
the .0 version. The main driver for the change is that our CI jobs use
the Go version as specified in the `go.mod` file. With this change, we
can now let Renovate update the Go version in the go.mod file
automatically.

Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh committed Feb 10, 2025
1 parent 5249242 commit c0a21a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
module github.com/cilium/hubble

go 1.23.0

toolchain go1.23.6
// renovate: datasource=golang-version depName=go
go 1.23.6

require github.com/cilium/cilium v1.17.0

Expand Down

0 comments on commit c0a21a3

Please sign in to comment.