From f82f0018347c61620e12dbf292bb720083b42432 Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Thu, 19 Dec 2024 11:59:38 -0700 Subject: [PATCH] Add patch version to site/go.mod (#2934) Problem: As of Go 1.21, toolchain versions must use the 1.N.P syntax. This is causing a warning from CodeQL in our pipelines. Solution: Add the minimum patch version. --- site/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/go.mod b/site/go.mod index 4145091b7d..da518ca162 100644 --- a/site/go.mod +++ b/site/go.mod @@ -1,5 +1,5 @@ module github.com/nginxinc/nginx-gateway-fabric/site -go 1.21 +go 1.21.0 require github.com/nginxinc/nginx-hugo-theme v0.41.23 // indirect