Skip to content

Commit 0eeeec3

Browse files
authored
Update the go version to 1.25.7 (#2189)
1 parent abad024 commit 0eeeec3

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM ubuntu:16.04
33

44
# Define Go version
5-
ARG GO_VERSION=1.25.6
5+
ARG GO_VERSION=1.25.7
66
# Define build-time arguments for the GitHub CLI version and architecture
77
ARG GH_VERSION='2.0.0'
88
ARG GH_ARCH='amd64'
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y \
3333
# RUN apt-get install -y \
3434
# gcc-5-multilib-mips-linux-gnu
3535

36-
# Install Go 1.25.6
36+
# Install Go 1.25.7
3737
RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz -o go${GO_VERSION}.linux-amd64.tar.gz && \
3838
tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz && \
3939
rm go${GO_VERSION}.linux-amd64.tar.gz

build/embed/integrations.version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ohi-repo-name,version
2-
nri-docker,v2.6.7
3-
nri-flex,v1.17.3
4-
nri-winservices,v1.4.2
5-
nri-prometheus,v2.27.6
2+
nri-docker,v2.6.8
3+
nri-flex,v1.17.4
4+
nri-winservices,v1.4.3
5+
nri-prometheus,v2.27.7

test/canaries/deploy_macos_canaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
vars:
3131
self_instrumentation: true
3232
target_agent_version: "{{ current_version }}"
33-
go_version: 1.25.6
33+
go_version: 1.25.7
3434
display_name: "{{ inventory_hostname }}-current"
3535

3636
- hosts: macos_previous
@@ -50,6 +50,6 @@
5050
vars:
5151
self_instrumentation: true
5252
target_agent_version: "{{ previous_version }}"
53-
go_version: 1.25.6
53+
go_version: 1.25.7
5454
display_name: "{{ inventory_hostname }}-previous"
5555
...

test/databind/fargate/Dockerfile_test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.6
1+
FROM golang:1.25.7
22

33
WORKDIR /go/src/github.com/newrelic/infrastructure-agent/
44

test/proxy/Dockerfile_agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.6 as builder
1+
FROM golang:1.25.7 as builder
22

33
ARG CGO_ENABLED=0
44
WORKDIR /go/src/github.com/newrelic/infrastructure-agent

test/proxy/Dockerfile_collector

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.6 as builder
1+
FROM golang:1.25.7 as builder
22
ARG CGO_ENABLED=0
33
WORKDIR /go/src/github.com/newrelic/infrastructure-agent
44
COPY . .

tools/cdn-purge/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/newrelic/infrastructure-agent/tools/cdn-purge
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.39.0

tools/spin-ec2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module spin-ec2
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/spf13/cobra v1.10.1

tools/yamlgen/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module yamlgen
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/ghodss/yaml v1.0.0

0 commit comments

Comments
 (0)