diff --git a/ci/build_test_release.go b/ci/build_test_release.go index aabc2d3..861b2c3 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.22"). + From("golang:1.23"). WithDirectory("/src", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{}, })).WithMountedCache("/src/dagger_dep_cache/go_dep", goCache) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index efc04ca..60ae112 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.22"). + From("golang:1.23"). WithDirectory("/src", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{"build/"}, })).WithMountedCache("/src/dagger_dep_cache/go_dep", goCache) diff --git a/go.mod b/go.mod index 8eeb3f3..0518b16 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/Slug-Boi/cocommit -go 1.21.9 +go 1.23.2 require ( github.com/charmbracelet/bubbles v0.20.0