Skip to content
Closed
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash
#
# Go.
#
GO_VERSION ?= 1.24.10
GO_VERSION ?= 1.24.11
GO_DIRECTIVE_VERSION ?= 1.23.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fabriziopandini we've been keeping GO_DIRECTIVE_VERSION at 1.23 in this branch, despite moving the actual toolchain version forward to 1.24.x. That's unlike main and the other branches--could this have something to do with the lint issue?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The lint issue is due to a golangci-lint bug fixed in 2.7.0, but this brach is using a very old version of golangci-lint and bumping is not feasible, so we are looking into possible workarounds

GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION)

Expand Down
4 changes: 2 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def load_provider_tilt_files():

tilt_helper_dockerfile_header = """
# Tilt image
FROM golang:1.24.10 as tilt-helper
FROM golang:1.24.11 as tilt-helper
# Install delve. Note this should be kept in step with the Go release minor version.
RUN go install github.com/go-delve/delve/cmd/dlv@v1.24
# Support live reloading with Tilt
Expand All @@ -183,7 +183,7 @@ RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com
"""

tilt_dockerfile_header = """
FROM golang:1.24.10 as tilt
FROM golang:1.24.11 as tilt
WORKDIR /
COPY --from=tilt-helper /process.txt .
COPY --from=tilt-helper /start.sh .
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
publish = "docs/book/book"

[build.environment]
GO_VERSION = "1.24.10"
GO_VERSION = "1.24.11"

# Standard Netlify redirects
[[redirects]]
Expand Down
Loading