Skip to content

Commit 9b16095

Browse files
Bump golang version to v1.26.4
Signed-off-by: Furkat Gofurov <furkat.gofurov@suse.com>
1 parent 2b12bef commit 9b16095

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ release:
8080
.PHONY: go-version-check
8181
go-version-check:
8282
@[ $(GO_VERSION_MAJ) -ge 2 ] || \
83-
[ $(GO_VERSION_MAJ) -eq 1 -a $(GO_VERSION_MIN) -ge 20 ] || (echo "FATAL: Go version should be >= 1.20.x" ; exit 1 ; )
83+
[ $(GO_VERSION_MAJ) -eq 1 -a $(GO_VERSION_MIN) -ge 26 ] || (echo "FATAL: Go version should be >= 1.26.x" ; exit 1 ; )
8484

8585
.PHONY: lint
8686
lint: golangci-lint

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/flavio/kuberlr
22

3-
go 1.26.0
3+
go 1.26.4
44

55
require (
66
github.com/blang/semver/v4 v4.0.0

package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM registry.suse.com/bci/bci-busybox:${BCI_VERSION} AS final
55
# Image that provides cross compilation tooling.
66
FROM --platform=$BUILDPLATFORM rancher/mirrored-tonistiigi-xx:1.3.0 AS xx
77

8-
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.24 AS build
8+
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.26 AS build
99

1010
ARG TARGETPLATFORM
1111
ARG PROJECT_PATH

0 commit comments

Comments
 (0)