Skip to content

Commit 8b779c0

Browse files
gh-worker-campaigns-3e9aa4[bot]SeanMeyerclaude
authored
chore(deps): runtime go runtime go1.26.1 → go1.26.2 (#1064)
* Executing automated changes * Update Dockerfile ARG BUILDGOVERSION defaults to 1.26.2 The Makefile BUILDGOVERSION was updated but the Dockerfile ARG defaults were still at 1.25.6. These defaults are used when building without the Makefile (standalone docker build). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: gh-worker-campaigns-3e9aa4[bot] <244854796+gh-worker-campaigns-3e9aa4[bot]@users.noreply.github.com> Co-authored-by: Sean Meyer <sean.meyer@datadoghq.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8519cf3 commit 8b779c0

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GOARCH = $(shell go env GOARCH)
88

99
# change also github actions go build version "GO_VERSION:" if you change the version below
1010
# https://github.com/DataDog/chaos-controller/blob/main/.github/workflows/ci.yml#L13
11-
BUILDGOVERSION = 1.26.1
11+
BUILDGOVERSION = 1.26.2
1212

1313
# GOBIN can be provided (gitlab), defined (custom user setup), or empty/guessed (default go setup)
1414
GOBIN ?= $(shell go env GOBIN)

bin/handler/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
ARG BUILDGOVERSION=1.25.6
2+
ARG BUILDGOVERSION=1.26.2
33
FROM golang:${BUILDGOVERSION} AS builder
44

55
ARG TARGETOS=linux

bin/injector/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Global build arguments for FROM statements
2-
ARG BUILDGOVERSION=1.25.6
2+
ARG BUILDGOVERSION=1.26.2
33

44
# Stage for building EBPF programs
55
FROM ubuntu:24.04 AS ebpf-builder
66

77
ARG TARGETARCH
8-
ARG BUILDGOVERSION=1.25.6
8+
ARG BUILDGOVERSION=1.26.2
99

1010
# Install build dependencies
1111
RUN apt-get update && \

bin/manager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
ARG BUILDGOVERSION=1.25.6
2+
ARG BUILDGOVERSION=1.26.2
33
FROM golang:${BUILDGOVERSION} AS builder
44

55
ARG TARGETOS=linux

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/DataDog/chaos-controller
22

33
go 1.25.6
44

5-
toolchain go1.26.1
5+
toolchain go1.26.2
66

77
require (
88
github.com/AlecAivazis/survey/v2 v2.3.7

0 commit comments

Comments
 (0)