From f0d0829b6bf81f68e272fad900c1956a921a73dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 16:03:21 +0000 Subject: [PATCH] CP-29639: Bump golang from 1.26.4-alpine to 1.26.5-alpine in /docker Bumps golang from 1.26.4-alpine to 1.26.5-alpine. --- updated-dependencies: - dependency-name: golang dependency-version: 1.26.5-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .tools/go.mod | 2 +- docker/Dockerfile | 2 +- go.mod | 2 +- tests/docker/Dockerfile.smoke-tests | 2 +- tests/go.mod | 2 +- tests/integration/test_server/Dockerfile | 2 +- tests/integration/test_server/go.mod | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.tools/go.mod b/.tools/go.mod index c4023d683..740d31443 100644 --- a/.tools/go.mod +++ b/.tools/go.mod @@ -1,6 +1,6 @@ module github.com/cloudzero/cloudzero-agent/.tools -go 1.26.4 +go 1.26.5 require ( github.com/homeport/dyff v1.12.0 diff --git a/docker/Dockerfile b/docker/Dockerfile index ef27043a9..0d81976b5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,7 +14,7 @@ ARG RELOADER_VERSION=v0.91.0 # 7. final: Minimal runtime image with compiled binaries # Stage 1: Base tools installation -FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine AS base-tools +FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS base-tools ARG TARGETPLATFORM ARG TARGETOS TARGETARCH diff --git a/go.mod b/go.mod index ba49fd884..84e20d508 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cloudzero/cloudzero-agent -go 1.26.4 +go 1.26.5 require ( github.com/google/go-cmp v0.7.0 diff --git a/tests/docker/Dockerfile.smoke-tests b/tests/docker/Dockerfile.smoke-tests index 4b1f5cd18..c94fbd515 100644 --- a/tests/docker/Dockerfile.smoke-tests +++ b/tests/docker/Dockerfile.smoke-tests @@ -8,7 +8,7 @@ # components, avoiding the need to build and coordinate multiple images. # Stage 1: Base tools installation -FROM golang:1.26.4-alpine AS base-tools +FROM golang:1.26.5-alpine AS base-tools WORKDIR /app # Install system packages needed for building diff --git a/tests/go.mod b/tests/go.mod index a3e59d37b..b70d6b72a 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -1,6 +1,6 @@ module github.com/cloudzero/cloudzero-agent/tests -go 1.26.4 +go 1.26.5 require ( github.com/andybalholm/brotli v1.2.2 diff --git a/tests/integration/test_server/Dockerfile b/tests/integration/test_server/Dockerfile index 92490efff..c17823fbe 100644 --- a/tests/integration/test_server/Dockerfile +++ b/tests/integration/test_server/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.4 +FROM golang:1.26.5 WORKDIR /app diff --git a/tests/integration/test_server/go.mod b/tests/integration/test_server/go.mod index df2cd044e..8c652bf2d 100644 --- a/tests/integration/test_server/go.mod +++ b/tests/integration/test_server/go.mod @@ -1,5 +1,5 @@ module main -go 1.26.4 +go 1.26.5 require github.com/golang/snappy v1.0.0