Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update golang version
Browse files Browse the repository at this point in the history
renovate[bot] authored Nov 7, 2024
1 parent 68101e9 commit 299848c
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ RUN git clone https://github.com/newrelic/nrjmx.git && \
cd nrjmx && \
mvn package -DskipTests -P \!deb,\!rpm,\!test,\!tarball

FROM golang:1.22 as builder
FROM golang:1.23 as builder
COPY . /go/src/github.com/newrelic/nri-jmx/
RUN cd /go/src/github.com/newrelic/nri-jmx && \
make && \
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bookworm
FROM golang:1.23-bookworm

ARG GH_VERSION='2.0.0'

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/newrelic/nri-jmx

go 1.22
go 1.23.3

require (
github.com/kr/pretty v0.3.0
2 changes: 1 addition & 1 deletion internal/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nri-jmx/internal/tools

go 1.22.0
go 1.23.3

require github.com/josephspurrier/goversioninfo v1.4.1

2 changes: 1 addition & 1 deletion test/integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22 as builder
FROM golang:1.23 as builder
ARG CGO_ENABLED=0
ARG NRJMX_VERSION
WORKDIR /go/src/github.com/newrelic/nri-jmx
4 changes: 1 addition & 3 deletions tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/newrelic/nri-jmx/tools

go 1.22.1

toolchain go1.23.0
go 1.23.3

require github.com/golangci/golangci-lint v1.61.0

0 comments on commit 299848c

Please sign in to comment.