Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -75,7 +75,7 @@ RUN mise use -g rust@${RUST_VERSION}

# ---

FROM golang:1.26.1-bookworm@sha256:c7a82e9e2df2fea5d8cb62a16aa6f796d2b2ed81ccad4ddd2bc9f0d22936c3f2 AS builder
FROM golang:1.26.2-bookworm@sha256:4f4ab2c90005e7e63cb631f0b4427f05422f241622ee3ec4727cc5febbf83e34 AS builder
WORKDIR /src

COPY go.mod go.sum ./
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/sandbox/defaults/go/go.mod.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module sandbox

go 1.26.0
go 1.26.2

require golang.org/x/text v0.34.0 // indirect
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -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"
Loading