From d007b0c3e89ac12e4e8f5fa58b85e8056dded05d Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Thu, 19 Dec 2024 11:24:16 -0700 Subject: [PATCH] Add patch version to site/go.mod Problem: As of Go 1.21, toolchain versions must use the 1.N.P syntax. This is causing a wanring 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