From a7123f7d600e16238a83db21ebdc889476b571c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 21:50:26 +0000 Subject: [PATCH] chore(deps): update golang version to v1.21.4 --- 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 f1b03ff2..06e901cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.3 as builder-kafka +FROM golang:1.21.4 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 abbc489e..d7bf29cc 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.3-bookworm +FROM golang:1.21.4-bookworm ARG GH_VERSION='1.6.0' diff --git a/go.mod b/go.mod index 9a5d44fe..16b3971b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/newrelic/nri-kafka -go 1.21 +go 1.21.4 require ( github.com/IBM/sarama v1.41.3 diff --git a/tests/integration/Dockerfile b/tests/integration/Dockerfile index 3ba04ec4..2bbb7dbb 100644 --- a/tests/integration/Dockerfile +++ b/tests/integration/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.3 as builder +FROM golang:1.21.4 as builder ARG CGO_ENABLED=0 ARG NRJMX_VERSION WORKDIR /go/src/github.com/newrelic/nri-kafka