Skip to content

Commit

Permalink
update go version
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksym Trofimenko committed Dec 8, 2024
1 parent f5a0bfd commit 18bc711
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ var buildCmd = &cobra.Command{
VersionID: publishResponse.Module.Id,
}

// @todo build failure ignored
if err := build.Build(ctx, cwd, pathToMain, buildOpts); err != nil {
fmt.Fprintf(os.Stderr, "unable to build: %v\n", err)
return
}

image := fmt.Sprintf("%s:%s", publishResponse.Options.Repo, publishResponse.Options.Tag)

if err = build.Push(ctx, build.PushOpts{
Expand Down
2 changes: 1 addition & 1 deletion tools/build/Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Step 1: Prepare modules
FROM golang:1.23.1 as builder
FROM golang:1.23.3 as builder
ARG TARGETOS
ARG TARGETARCH
ARG VERSION_ID
Expand Down

0 comments on commit 18bc711

Please sign in to comment.