From 837417a8ee252b0abc99cbf3c8fad6978c8c5c23 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 21:31:11 +0000 Subject: [PATCH] chore(deps): update golang version to v1.23.0 --- 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 2d95d2e5..48afbc65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5 as builder-kafka +FROM golang:1.23.0 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 3cdaee89..b97a60f5 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5-bookworm +FROM golang:1.23.0-bookworm ARG GH_VERSION='1.6.0' diff --git a/go.mod b/go.mod index 528e546d..200cc215 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/newrelic/nri-kafka -go 1.22.5 +go 1.23.0 require ( github.com/IBM/sarama v1.41.3 diff --git a/tests/integration/Dockerfile b/tests/integration/Dockerfile index 37817846..ef7043f9 100644 --- a/tests/integration/Dockerfile +++ b/tests/integration/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5 as builder +FROM golang:1.23.0 as builder ARG CGO_ENABLED=0 ARG NRJMX_VERSION WORKDIR /go/src/github.com/newrelic/nri-kafka