From 123e2138191161439e1c8f012262caae55e3960a Mon Sep 17 00:00:00 2001 From: Austin Vazquez <55906459+austinvazquez@users.noreply.github.com> Date: Mon, 8 Jul 2024 08:27:44 -0700 Subject: [PATCH] ci: drop patch from Go min version (#353) Issue #, if available: Go in CI is using Go 1.22.0 even though new versions are available. *Description of changes:* This change drops the patch version from the min version in go.mod. *Testing done:* CI is successful - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Austin Vazquez --- e2e/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/go.mod b/e2e/go.mod index e3152a0..4adbea3 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -1,6 +1,6 @@ module finch-core -go 1.22.0 +go 1.22 require ( github.com/onsi/ginkgo/v2 v2.19.0