From 72e84a5486b36331f13518d69ee3fc365f29bcef Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 6 Jun 2024 09:33:30 -0700 Subject: [PATCH] Revert Go version to 1.22.0 (#120) This is a library so it will be compiled with the version specified in the project that imports it. This also is treated by Go as a minimum suggested version and we should only increase it if we need new features from the language. Bumping this to the latest version only means that the projects importing it will be forced to update to the same version. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 69fa33d..5a30186 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nginxinc/telemetry-exporter -go 1.22.4 +go 1.22.0 require ( github.com/go-logr/logr v1.4.2