Skip to content

Commit 8088831

Browse files
committed
Update version references for k8s 1.36
./Makefile ./Makefile ./hack/lint.sh ./Dockerfile Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
1 parent 9ee59b9 commit 8088831

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build stage – use Go image to match go.mod (set via build-arg from Makefile)
22
ARG GOLANG_IMAGE=quay.io/projectquay/golang
3-
ARG GOLANG_VERSION=1.24
3+
ARG GOLANG_VERSION=1.26
44
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS builder
55
WORKDIR /build
66

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ build:
2727
IMAGE ?= localhost/ovnk-mcp-server:dev
2828
export IMAGE
2929
GOLANG_IMAGE ?= quay.io/projectquay/golang
30-
GOLANG_VERSION ?= 1.25
30+
GOLANG_VERSION ?= 1.26
3131
KUSTOMIZE_VERSION ?= v5.8.1
32-
K8S_VERSION ?= v1.35.1
32+
K8S_VERSION ?= v1.36.0
3333

3434
.PHONY: build-image
3535
build-image:

hack/lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
VERSION=v2.12.1
2+
VERSION=v2.12.2
33
extra_flags=""
44
if [ "$#" -ne 1 ]; then
55
if [ "$#" -eq 2 ] && [ "$2" == "fix" ]; then

0 commit comments

Comments
 (0)