Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update golang version to v1.24.0 #169

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.23.6 as builder
FROM golang:1.24.0 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 go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/newrelic/nri-jmx

go 1.23.6
go 1.24.0

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.23.6
go 1.24.0

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.23.6 as builder
FROM golang:1.24.0 as builder
ARG CGO_ENABLED=0
ARG NRJMX_VERSION
WORKDIR /go/src/github.com/newrelic/nri-jmx
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/newrelic/nri-jmx/tools

go 1.23.6
go 1.24.0

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

Expand Down
Loading