diff --git a/builder/go_versions.go b/builder/go_versions.go index cafb3527..6378e181 100644 --- a/builder/go_versions.go +++ b/builder/go_versions.go @@ -14,6 +14,7 @@ const ( Go120Version = "1.20.14" Go121Version = "1.21.7" Go122Version = "1.22.6" + Go123Version = "1.23.1" // ADD NEW GO VERSION [1] - latest patch release for each major/minor // When updating alpine image, ensure all golang build image combinations below exist @@ -29,6 +30,7 @@ var ( Go120Image = GolangAlpineImage(Go120Version, LatestAlpineImageVersion) Go121Image = GolangAlpineImage(Go121Version, LatestAlpineImageVersion) Go122Image = GolangAlpineImage(Go122Version, LatestAlpineImageVersion) + Go123Image = GolangAlpineImage(Go123Version, LatestAlpineImageVersion) // ADD NEW GO VERSION [3] - update GoDefaultVersion and GoDefaultImage to latest GoDefaultVersion = Go122Version @@ -51,6 +53,7 @@ var GoImageForVersion = map[string]GoVersion{ "1.20": GoVersion{Version: Go120Version, Image: Go120Image}, "1.21": GoVersion{Version: Go121Version, Image: Go121Image}, "1.22": GoVersion{Version: Go122Version, Image: Go122Image}, + "1.23": GoVersion{Version: Go122Version, Image: Go123Image}, // ADD NEW GO VERSION [4] }