Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tools/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/Dockerfile.smoke-tests
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26.4
FROM golang:1.26.5

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_server/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module main

go 1.26.4
go 1.26.5

require github.com/golang/snappy v1.0.0
Loading