Skip to content

Commit 8c994a9

Browse files
chore(deps): updated go version from 1.23.11 to 1.23.12 (#2113)
* chore(deps): updated go version from 1.23.11 to 1.23.12 * Update test/canaries/deploy_macos_canaries.yml Co-authored-by: Rohan Yadav <[email protected]> * Update test/canaries/deploy_macos_canaries.yml Co-authored-by: Rohan Yadav <[email protected]> --------- Co-authored-by: Rohan Yadav <[email protected]>
1 parent 5d443a9 commit 8c994a9

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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.23.11
5+
ARG GO_VERSION=1.23.12
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.23.11
36+
# Install Go 1.23.12
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

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
22

3-
go 1.23.11
3+
go 1.23.12
44

55
require (
66
github.com/Microsoft/go-winio v0.6.2

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.23.11
1+
FROM golang:1.23.12
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.23.11 as builder
1+
FROM golang:1.23.12 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.23.11 as builder
1+
FROM golang:1.23.12 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.23.11
3+
go 1.23.12
44

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

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.23.11
3+
go 1.23.12
44

55
require (
66
github.com/spf13/cobra v1.2.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.23.11
3+
go 1.23.12
44

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

0 commit comments

Comments
 (0)