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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Kubebuilder DevContainer",
"image": "docker.io/golang:1.26.2",
"image": "docker.io/golang:1.26.3",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/git:1": {}
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.26.2
ARG GO_VERSION=1.26.3

# Build the manager binary \
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine3.23 AS builder
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.26.2
GO_VERSION=1.26.3

FROM golang:${GO_VERSION}-alpine3.23 AS buildergo
RUN mkdir -p /fluent-bit
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.26.2
GO_VERSION=1.26.3

FROM golang:${GO_VERSION}-alpine3.23 AS buildergo
RUN mkdir -p /fluent-bit
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENTD_BASE_VERSION \
GO_VERSION=1.26.2
GO_VERSION=1.26.3

FROM golang:${GO_VERSION} AS builder

Expand Down
2 changes: 1 addition & 1 deletion docs/best-practice/forwarding-logs-via-http/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GO_VERSION=1.26.2
ARG GO_VERSION=1.26.3
# Build the manager binary
FROM golang:${GO_VERSION} AS builder

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/fluent/fluent-operator/v3

go 1.26.2
go 1.26.3

require (
github.com/fsnotify/fsnotify v1.10.1
Expand Down
Loading