diff --git a/ci/build_test_release.go b/ci/build_test_release.go index 6bf7408..1e4d36d 100644 --- a/ci/build_test_release.go +++ b/ci/build_test_release.go @@ -24,7 +24,7 @@ func main() { // mount the source code directory on the host // at /src in the container source := client.Container(). - From("golang:1.23"). + From("golang:1.24"). WithDirectory("/src_d", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{}, })).WithMountedCache("/src_d/dagger_dep_cache/go_dep", goCache) diff --git a/ci/go.mod b/ci/go.mod index dfa1893..0c3440b 100644 --- a/ci/go.mod +++ b/ci/go.mod @@ -1,6 +1,6 @@ module ci -go 1.23.2 +go 1.24.6 require dagger.io/dagger v0.13.6 diff --git a/ci/test_on_push.go b/ci/test_on_push.go index 17edfd5..2509e61 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -24,7 +24,7 @@ func main() { // mount the source code directory on the host // at /src in the container source := client.Container(). - From("golang:1.23"). + From("golang:1.24"). WithDirectory("/src_d", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{"build/"}, })).WithMountedCache("/src_d/dagger_dep_cache/go_dep", goCache) @@ -41,4 +41,4 @@ func main() { panic(err) } fmt.Println(out) -} \ No newline at end of file +}