Skip to content

Commit e46296e

Browse files
committed
Makefile: update Go to 1.26.3, adjust depName again
It looks like commit 4b2d802 ("renovate: try to group dependency updates") didn't have the intended effect and as a result the Go version in the Makefile wasn't updated anymore. Manually bump it now and adjust the depName again - this time to the full image path - so it will be updated by renovate going forward. Signed-off-by: Tobias Klauser <tobias@cilium.io>
1 parent b5431cc commit e46296e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ TEST_TIMEOUT ?= 5s
1919
RELEASE_UID ?= $(shell id -u)
2020
RELEASE_GID ?= $(shell id -g)
2121

22-
# renovate: datasource=docker depName=golang
23-
GO_IMAGE_VERSION = 1.25.5-alpine3.21
24-
GO_IMAGE_SHA = sha256:b4dbd292a0852331c89dfd64e84d16811f3e3aae4c73c13d026c4d200715aff6
22+
# renovate: datasource=docker depName=docker.io/library/golang
23+
GO_IMAGE_VERSION = 1.26.3-alpine3.23
24+
GO_IMAGE_SHA = sha256:91eda9776261207ea25fd06b5b7fed8d397dd2c0a283e77f2ab6e91bfa71079d
2525

2626
# renovate: datasource=docker depName=golangci/golangci-lint
2727
GOLANGCILINT_WANT_VERSION = v2.12.1
@@ -40,7 +40,7 @@ release:
4040
--workdir /cilium \
4141
--volume `pwd`:/cilium docker.io/library/golang:$(GO_IMAGE_VERSION)@$(GO_IMAGE_SHA) \
4242
sh -c "apk add --no-cache curl setpriv make git zip && \
43-
/usr/bin/setpriv --reuid=$(RELEASE_UID) --regid=$(RELEASE_GID) --clear-groups make GOCACHE=/tmp/gocache local-release"
43+
/bin/setpriv --reuid=$(RELEASE_UID) --regid=$(RELEASE_GID) --clear-groups make GOCACHE=/tmp/gocache local-release"
4444

4545
local-release: clean
4646
set -o errexit; \

0 commit comments

Comments
 (0)