Skip to content

Commit

Permalink
feat: Use go 1.22 by default (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolajb authored Apr 25, 2024
1 parent dcd0046 commit 95d84c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catalog/golang/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

type config struct {
GoImageRepo string `env:"GO_IMAGE_REPO,notEmpty" envDefault:"docker.io/golang"`
GoImageTag string `env:"GO_IMAGE_TAG,notEmpty" envDefault:"1.21"`
GoImageTag string `env:"GO_IMAGE_TAG,notEmpty" envDefault:"1.22"`
GoModCacheEnabled bool `env:"GO_MOD_CACHE_ENABLE" envDefault:"true"`
GoModDir string `env:"GO_MOD_DIR" envDefault:"."`
Args []string `env:"GO_ARGS" envDefault:"" envSeparator:" "`
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mesosphere/d2iq-daggers

go 1.21
go 1.22

require (
dagger.io/dagger v0.10.1
Expand Down

0 comments on commit 95d84c6

Please sign in to comment.