From f496363a064aefa3c9859c2c35eb7f7f434c2e0e Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Fri, 17 Jan 2025 02:28:32 +0000
Subject: [PATCH] chore(deps): update golang patch version to v1.23.5

---
 Dockerfile                   | 2 +-
 build/Dockerfile             | 2 +-
 go.mod                       | 2 +-
 tests/integration/Dockerfile | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 17133a4..dbc188a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.23.4 as builder-kafka
+FROM golang:1.23.5 as builder-kafka
 COPY . /go/src/github.com/newrelic/nri-kafka/
 RUN cd /go/src/github.com/newrelic/nri-kafka && \
     make && \
diff --git a/build/Dockerfile b/build/Dockerfile
index 657bb92..d60a749 100644
--- a/build/Dockerfile
+++ b/build/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.23.4-bookworm
+FROM golang:1.23.5-bookworm
 
 ARG GH_VERSION='1.6.0'
 
diff --git a/go.mod b/go.mod
index a864e50..21bdebf 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
 module github.com/newrelic/nri-kafka
 
-go 1.23.4
+go 1.23.5
 
 require (
 	github.com/IBM/sarama v1.43.3
diff --git a/tests/integration/Dockerfile b/tests/integration/Dockerfile
index fd56cb2..e22a8e4 100644
--- a/tests/integration/Dockerfile
+++ b/tests/integration/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.23.4 as builder
+FROM golang:1.23.5 as builder
 ARG CGO_ENABLED=0
 ARG NRJMX_VERSION
 WORKDIR /go/src/github.com/newrelic/nri-kafka