diff --git a/Dockerfile b/Dockerfile index f9a53e3..e04146a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,7 @@ RUN mise settings ruby.compile=false && mise use -g ruby@${RUBY_VERSION} && \ # Go # renovate: datasource=golang-version depName=go -ARG GO_VERSION=1.26.0 +ARG GO_VERSION=1.26.2 ENV PATH="/mise/installs/go/${GO_VERSION}/bin:$PATH" RUN mise use -g go@${GO_VERSION} && \ ln -s /mise/installs/go/${GO_VERSION} /mise/installs/go/current diff --git a/go.mod b/go.mod index 35c501b..080d44d 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,10 @@ module github.com/codize-dev/sandbox -go 1.26.0 +go 1.26.2 require ( github.com/labstack/echo/v5 v5.0.4 + github.com/spf13/cobra v1.10.2 github.com/stretchr/testify v1.11.1 go.yaml.in/yaml/v4 v4.0.0-rc.4 golang.org/x/sys v0.41.0 @@ -13,7 +14,6 @@ require ( github.com/davecgh/go-spew v1.1.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/spf13/cobra v1.10.2 // indirect github.com/spf13/pflag v1.0.9 // indirect golang.org/x/time v0.14.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/internal/sandbox/defaults/go/go.mod.tmpl b/internal/sandbox/defaults/go/go.mod.tmpl index fc5f13b..c9eb699 100644 --- a/internal/sandbox/defaults/go/go.mod.tmpl +++ b/internal/sandbox/defaults/go/go.mod.tmpl @@ -1,5 +1,5 @@ module sandbox -go 1.26.0 +go 1.26.2 require golang.org/x/text v0.34.0 // indirect diff --git a/mise.toml b/mise.toml index 23ff689..df8f2f0 100644 --- a/mise.toml +++ b/mise.toml @@ -1,5 +1,5 @@ [tools] -go = "1.26.1" +go = "1.26.2" "aqua:golangci/golangci-lint" = "2.10.1" "aqua:evilmartians/lefthook" = "2.1.4" "aqua:hadolint/hadolint" = "2.14.0"