Skip to content

Commit 7e28043

Browse files
authored
Merge pull request #6571 from makhov/go-1.24.9
[release-1.34] Bump Go to 1.24.9
2 parents a888f28 + ce1881b commit 7e28043

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM $BUILDIMAGE
44
ARG TARGETARCH
55
RUN set -ex; \
66
# Need to use the gold linker on ARM, Go really wants to have it.
7-
# https://github.com/golang/go/blob/go1.24.8/src/cmd/link/internal/ld/lib.go#L1674-L1694
7+
# https://github.com/golang/go/blob/go1.24.9/src/cmd/link/internal/ld/lib.go#L1674-L1693
88
case "$TARGETARCH" in \
99
arm*) binutils=binutils-gold ;; \
1010
*) binutils=binutils ;; \

embedded-bins/Makefile.variables

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
alpine_patch_version = 3.22.2
33
alpine_version = $(word 1,$(subst ., ,$(alpine_patch_version))).$(word 2,$(subst ., ,$(alpine_patch_version)))
44
golang_buildimage=docker.io/library/golang:$(go_version)-alpine$(alpine_version)
5-
go_version = 1.24.8
5+
go_version = 1.24.9
66

77
# renovate: datasource=github-releases depName=opencontainers/runc
88
runc_version = 1.3.2

internal/pkg/file/atomic_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func TestWriteAtomically(t *testing.T) {
215215
)
216216
assert.Equal(t, file, linkErr.New)
217217
if runtime.GOOS == "windows" {
218-
// https://github.com/golang/go/blob/go1.25.1/src/syscall/types_windows.go#L11
218+
// https://github.com/golang/go/blob/go1.24.9/src/syscall/types_windows.go#L11
219219
//revive:disable-next-line:var-naming
220220
const ERROR_ACCESS_DENIED syscall.Errno = 5
221221
var errno syscall.Errno

0 commit comments

Comments
 (0)