@@ -16,6 +16,7 @@ const (
1616 Go122Version = "1.22.7"
1717 Go123Version = "1.23.4"
1818 Go124Version = "1.24.1"
19+ Go125Version = "1.25.7"
1920 // ADD NEW GO VERSION [1] - latest patch release for each major/minor
2021
2122 // When updating alpine image, ensure all golang build image combinations below exist
@@ -33,10 +34,10 @@ var (
3334 Go122Image = GolangAlpineImage (Go122Version , LatestAlpineImageVersion )
3435 Go123Image = GolangAlpineImage (Go123Version , LatestAlpineImageVersion )
3536 Go124Image = GolangAlpineImage (Go124Version , LatestAlpineImageVersion )
36-
37+ Go125Image = GolangAlpineImage ( Go125Version , LatestAlpineImageVersion )
3738 // ADD NEW GO VERSION [3] - update GoDefaultVersion and GoDefaultImage to latest
38- GoDefaultVersion = Go123Version
39- GoDefaultImage = Go123Image // default image for cosmos go builds if go.mod parse fails
39+ GoDefaultVersion = Go125Version
40+ GoDefaultImage = Go125Image // default image for cosmos go builds if go.mod parse fails
4041)
4142
4243func GolangAlpineImage (goVersion , alpineVersion string ) string {
@@ -57,6 +58,7 @@ var GoImageForVersion = map[string]GoVersion{
5758 "1.22" : GoVersion {Version : Go122Version , Image : Go122Image },
5859 "1.23" : GoVersion {Version : Go123Version , Image : Go123Image },
5960 "1.24" : GoVersion {Version : Go124Version , Image : Go124Image },
61+ "1.25" : GoVersion {Version : Go125Version , Image : Go125Image },
6062 // ADD NEW GO VERSION [4]
6163}
6264
0 commit comments