From fd6c445e62dd6796f299513bc39640a105e21d49 Mon Sep 17 00:00:00 2001 From: Pablo Baeyens Date: Wed, 17 Apr 2024 16:33:09 +0200 Subject: [PATCH] [go.mod] Change `go` directive to `1.21` On b3432fb1eca90dae072e53d428f248aecec65d18, the minimum supported Go version was updated to `1.21.0`. This changes the version to `1.21` so that we are using a language version. If not using toolchain, this seems to be the preferred convention in the ecosystem and golang/go. Signed-off-by: Pablo Baeyens --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 70ebe67ff..c60c48bf2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cilium/ebpf -go 1.21.0 +go 1.21 require ( github.com/go-quicktest/qt v1.101.0