From 7d594426281aecb413fd5f0e89ba02f4e61c876f Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Tue, 28 Apr 2026 11:35:09 +0200 Subject: [PATCH] ci: update go version in dagger --- ci/build_test_release.go | 2 +- ci/test_on_push.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build_test_release.go b/ci/build_test_release.go index 1e4d36d..482e7b6 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.24"). + From("golang:1.25"). WithDirectory("/src_d", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{}, })).WithMountedCache("/src_d/dagger_dep_cache/go_dep", goCache) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index 2509e61..2a0b14d 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.24"). + From("golang:1.25"). WithDirectory("/src_d", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{"build/"}, })).WithMountedCache("/src_d/dagger_dep_cache/go_dep", goCache)