tried to update golang version for dagger workflows

This commit is contained in:
Theis
2024-07-04 12:10:16 +02:00
parent cdf6e1d06f
commit 5c77b7f36d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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.21").
From("golang:1.22").
WithDirectory("/src", client.Host().Directory(".", dagger.HostDirectoryOpts{
Exclude: []string{"build/"},
})).WithMountedCache("/src/dagger_dep_cache/go_dep", goCache)