Skip to content

Commit 5990237

Browse files
chore(deps): update all non-major dependencies
1 parent bbc32c0 commit 5990237

17 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/actions/kind-create/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
- name: Set up Docker Buildx
2626
uses: docker/setup-buildx-action@v3
2727
- name: Setup Kind
28-
uses: helm/kind-action@v1.13.0
28+
uses: helm/kind-action@v1.14.0
2929
with:
3030
cluster_name: ${{ inputs.kind_cluster_name }}
3131
version: v0.30.0

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v6
2424
with:
25-
go-version: '1.25'
25+
go-version: '1.26'
2626

2727
- name: Check Go modules dependency file integrity
2828
run: |
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up Go
5959
uses: actions/setup-go@v6
6060
with:
61-
go-version: '1.25'
61+
go-version: '1.26'
6262

6363
- name: Clean Go module and build cache
6464
run: |

.github/workflows/e2e-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/setup-go@v6
3131
with:
32-
go-version: '1.25'
32+
go-version: '1.26'
3333

3434
- name: Setup Helm
3535
uses: azure/setup-helm@v4

.github/workflows/operator-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Go 1.25
4545
uses: actions/setup-go@v6
4646
with:
47-
go-version: '1.25'
47+
go-version: '1.26'
4848
id: go
4949

5050
- name: Clean Go module cache for reproducible builds

.github/workflows/update-go-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v6
2727
with:
28-
go-version: '1.25'
28+
go-version: '1.26'
2929

3030
- name: Update Go dependencies
3131
run: make update-go-deps

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.25@sha256:6cc2338c038bc20f96ab32848da2b5c0641bb9bb5363f2c33e9b7c8838f9a208 AS builder
2+
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.26@sha256:595c7847cff97c9a9e76f015083c481d26078f961c9c8dca3923132f51fe12f1 AS builder
33

44
ARG BUILDPLATFORM
55
ARG TARGETPLATFORM

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ RELEASE_MSG ?= "koperator release"
1818
REL_TAG = $(shell ./scripts/increment_version.sh -${RELEASE_TYPE} ${TAG})
1919

2020
# Version constants
21-
GOLANGCI_VERSION = 2.7.2 # renovate: datasource=github-releases depName=golangci/golangci-lint
21+
GOLANGCI_VERSION = 2.11.4 # renovate: datasource=github-releases depName=golangci/golangci-lint
2222
LICENSEI_VERSION = 0.9.0 # renovate: datasource=github-releases depName=goph/licensei
23-
CONTROLLER_GEN_VERSION = v0.20.0 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
23+
CONTROLLER_GEN_VERSION = v0.20.1 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
2424
ENVTEST_K8S_VERSION = 1.35.0 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools extractVersion=^envtest-v(?<version>.+)$
2525
SETUP_ENVTEST_VERSION := latest
2626
ADDLICENSE_VERSION := 1.2.0 # renovate: datasource=github-releases depName=google/addlicense

api/v1beta1/kafkacluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const (
6262
DefaultMonitorImage = "ghcr.io/adobe/koperator/jmx-javaagent:1.4.0" // renovate: datasource=docker depName=ghcr.io/adobe/koperator/jmx-javaagent
6363

6464
// DefaultEnvoyImage is the default Envoy proxy image used when users don't specify it in EnvoyConfig.Image
65-
DefaultEnvoyImage = "envoyproxy/envoy:v1.36.4" // renovate: datasource=docker depName=envoyproxy/envoy
65+
DefaultEnvoyImage = "envoyproxy/envoy:v1.37.1" // renovate: datasource=docker depName=envoyproxy/envoy
6666

6767
// ControllerNodeProcessRole represents the node is a controller node
6868
ControllerNodeProcessRole = "controller"

charts/kafka-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ prometheusMetrics:
9595
# -- Auth proxy container image repository
9696
repository: quay.io/brancz/kube-rbac-proxy
9797
# -- Auth proxy container image tag
98-
tag: v0.20.1
98+
tag: v0.21.2
9999
# -- Auth proxy container image pull policy
100100
pullPolicy: IfNotPresent
101101
serviceAccount:

docker/jmx_exporter/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG JMX_EXPORTER_VERSION=1.5.0 # renovate: datasource=github-releases depName=prometheus/jmx_exporter
22

3-
FROM maven:3-amazoncorretto-21@sha256:def455126ccc18635cb64779d592bbe2558cb9bd6fed23c154918c90111b78b5 AS build
3+
FROM maven:3-amazoncorretto-21@sha256:2f0673980fed177b91d103d72a67850e61a657a051d068980ec5253dcdee474f AS build
44
ARG JMX_EXPORTER_VERSION
55

66
# Install wget to download the release tarball
@@ -18,7 +18,7 @@ RUN mvn -B -Dmaven.javadoc.skip=true -Dskip.javadoc=true \
1818
-Dmaven.compiler.source=21 -Dmaven.compiler.target=21 -Dmaven.compiler.release=21 \
1919
clean package -pl jmx_prometheus_javaagent -am
2020

21-
FROM alpine:latest@sha256:865b95f46d98cf867a156fe4a135ad3fe50d2056aa3f25ed31662dff6da4eb62
21+
FROM alpine:latest@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
2222
ARG JMX_EXPORTER_VERSION
2323
COPY --from=build /src/jmx_prometheus_javaagent/target/jmx_prometheus_javaagent-${JMX_EXPORTER_VERSION}.jar /opt/jmx_exporter/
2424
RUN ln -s /opt/jmx_exporter/jmx_prometheus_javaagent-${JMX_EXPORTER_VERSION}.jar /jmx_prometheus_javaagent.jar

0 commit comments

Comments
 (0)