Skip to content
Open
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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module pkg.world.dev/world-cli

go 1.24.0
go 1.23.4

require (
connectrpc.com/connect v1.18.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
################################
# Build Image - Normal
################################
FROM golang:1.24 AS build
FROM golang:1.23 AS build

ARG SOURCE_PATH
ARG GITHUB_TOKEN
Expand Down
4 changes: 2 additions & 2 deletions internal/app/world-cli/common/docker/service/cardinal.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ func Cardinal(cfg *config.Config) Service { //nolint:funlen // it does what it n
BuildTarget: runtime,
Dependencies: []Service{
{
Name: "golang:1.24-bookworm",
Name: "golang:1.23-bookworm",
Config: container.Config{
Image: "golang:1.24-bookworm",
Image: "golang:1.23-bookworm",
},
},
{
Expand Down
Loading