From 47829d941670412f6e915280a49663660089044a Mon Sep 17 00:00:00 2001 From: apikey Date: Wed, 8 Jul 2026 15:00:11 +0000 Subject: [PATCH] fix(deps): bump Go toolchain to 1.26.5 --- Dockerfile | 4 ++-- go.mod | 2 +- hack/gen-client-mocks.sh | 2 +- hack/lib.sh | 2 +- test.Dockerfile | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index abe596a4..f7425fdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:22.10 AS user # Create a nonroot user for final image RUN useradd -u 10001 nonroot -FROM golang:1.26.4-alpine3.22 AS builder +FROM golang:1.26.5-alpine3.22 AS builder WORKDIR /workspace @@ -31,7 +31,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \ -X \"github.com/pluralsh/plural-cli/pkg/common.Date=${APP_DATE}\"" \ -o plural ./cmd/plural -FROM golang:1.26.4-alpine3.22 AS final +FROM golang:1.26.5-alpine3.22 AS final WORKDIR / diff --git a/go.mod b/go.mod index 219b2d26..84691bd2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pluralsh/plural-cli -go 1.26.4 +go 1.26.5 require ( cloud.google.com/go/compute v1.64.0 diff --git a/hack/gen-client-mocks.sh b/hack/gen-client-mocks.sh index fe987703..ff18b757 100755 --- a/hack/gen-client-mocks.sh +++ b/hack/gen-client-mocks.sh @@ -6,7 +6,7 @@ cd $(dirname $0)/.. source hack/lib.sh -CONTAINERIZE_IMAGE=golang:1.26.4 containerize ./hack/gen-client-mocks.sh +CONTAINERIZE_IMAGE=golang:1.26.5 containerize ./hack/gen-client-mocks.sh go run github.com/vektra/mockery/v2@latest --dir=pkg/api/ --name=Client --output=pkg/test/mocks go run github.com/vektra/mockery/v2@latest --dir=pkg/kubernetes --name=Kube --output=pkg/test/mocks diff --git a/hack/lib.sh b/hack/lib.sh index c597b7d8..7d13dcc5 100644 --- a/hack/lib.sh +++ b/hack/lib.sh @@ -7,7 +7,7 @@ echodate() { containerize() { local cmd="$1" - local image="${CONTAINERIZE_IMAGE:-golang:1.26.4}" + local image="${CONTAINERIZE_IMAGE:-golang:1.26.5}" local gocache="${CONTAINERIZE_GOCACHE:-/tmp/.gocache}" local gomodcache="${CONTAINERIZE_GOMODCACHE:-/tmp/.gomodcache}" local skip="${NO_CONTAINERIZE:-}" diff --git a/test.Dockerfile b/test.Dockerfile index 904da035..337300cc 100644 --- a/test.Dockerfile +++ b/test.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.4-bookworm +FROM golang:1.26.5-bookworm RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \