Skip to content

Commit

Permalink
chore(deps): update golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 1, 2024
1 parent 90dbc00 commit d98fb3f
Show file tree
Hide file tree
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
Expand Up @@ -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 && \
Expand Down
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'

Expand Down
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.2

require (
github.com/kr/pretty v0.3.0
Expand Down
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.2

require github.com/josephspurrier/goversioninfo v1.4.1

Expand Down
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
Expand Down
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.2

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

Expand Down

0 comments on commit d98fb3f

Please sign in to comment.