diff --git a/core/module/const.go b/core/module/const.go index 9757325..1fb2c6b 100644 --- a/core/module/const.go +++ b/core/module/const.go @@ -287,12 +287,25 @@ var GolangReleases = []string{ "1.21.8", "1.21.9", "1.21.10", + "1.21.11", + "1.21.12", + "1.21.13", "1.22rc1", "1.22rc2", "1.22.0", "1.22.1", "1.22.2", "1.22.3", + "1.22.4", + "1.22.5", + "1.22.6", + "1.22.7", + "1.22.8", + "1.23rc1", + "1.23rc2", + "1.23.0", + "1.23.1", + "1.23.2", } // goShimContent shim for go binary diff --git a/core/module/golang_test.go b/core/module/golang_test.go index d77e98d..d21d0fb 100644 --- a/core/module/golang_test.go +++ b/core/module/golang_test.go @@ -23,7 +23,7 @@ func TestUnitGolang(t *testing.T) { g.Describe("#Golang", func() { g.It("It should satisfy test cases", func() { // Test GetVersions - g.Assert(len(goenv.GetVersions())).Equal(273) + g.Assert(len(goenv.GetVersions())).Equal(286) // Test SetVersion versionFile := fmt.Sprintf("%s/.goenv/%s", baseDir, ".go-version")