Skip to content

Commit f361fc6

Browse files
authored
fix: bump go version to 1.23.6 for CVE (#286)
1 parent 5c38041 commit f361fc6

10 files changed

+10
-10
lines changed

.github/workflows/build-publish-mcr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
# `public` indicates images to MCR wil be publicly available, and will be removed in the final MCR images
1818
REGISTRY_REPO: public/aks/fleet
1919

20-
GO_VERSION: '1.23.1'
20+
GO_VERSION: '1.23.6'
2121

2222
jobs:
2323
prepare-variables:

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
contents: read
1515

1616
env:
17-
GO_VERSION: '1.23.1'
17+
GO_VERSION: '1.23.6'
1818

1919
jobs:
2020
detect-noop:

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
# Common versions
17-
GO_VERSION: '1.23.1'
17+
GO_VERSION: '1.23.6'
1818

1919
jobs:
2020

.github/workflows/publish-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
REGISTRY: ghcr.io
2020
IMAGE_VERSION: latest
2121

22-
GO_VERSION: '1.23.1'
22+
GO_VERSION: '1.23.6'
2323

2424
jobs:
2525
export-registry:

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
MEMBER_NET_CONTROLLER_MANAGER_IMAGE_NAME: member-net-controller-manager
1919
MCS_CONTROLLER_MANAGER_IMAGE_NAME: mcs-controller-manager
2020

21-
GO_VERSION: '1.23.1'
21+
GO_VERSION: '1.23.6'
2222

2323
jobs:
2424
export-registry:

.github/workflows/unit-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
contents: read
1717

1818
env:
19-
GO_VERSION: '1.23.1'
19+
GO_VERSION: '1.23.6'
2020

2121
jobs:
2222
detect-noop:

docker/hub-net-controller-manager.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 as builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.6 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/mcs-controller-manager.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 as builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.6 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/member-net-controller-manager.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 as builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.6 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.goms.io/fleet-networking
22

3-
go 1.23.1
3+
go 1.23.6
44

55
require (
66
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0

0 commit comments

Comments
 (0)