Skip to content

Commit

Permalink
feat: add golang v1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
allthatjazzleo committed Sep 11, 2024
1 parent 00f8338 commit 9619df5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builder/go_versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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]
}

Expand Down

0 comments on commit 9619df5

Please sign in to comment.