Skip to content

Commit 20d3adf

Browse files
weng271190436Wei Weng
andauthored
chore: update go to 1.24.9 to fix CVEs (#346)
update go version for CVE Signed-off-by: Wei Weng <[email protected]> Co-authored-by: Wei Weng <[email protected]>
1 parent 56bdada commit 20d3adf

12 files changed

+12
-12
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.24.6'
20+
GO_VERSION: '1.24.9'
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
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
GO_VERSION: '1.24.6'
16+
GO_VERSION: '1.24.9'
1717

1818
jobs:
1919
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.24.6'
17+
GO_VERSION: '1.24.9'
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.24.6'
22+
GO_VERSION: '1.24.9'
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.24.6'
21+
GO_VERSION: '1.24.9'
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.24.6'
19+
GO_VERSION: '1.24.9'
2020

2121
jobs:
2222
detect-noop:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CONTROLLER_GEN_VER := v0.16.0
5151
CONTROLLER_GEN_BIN := controller-gen
5252
CONTROLLER_GEN := $(abspath $(TOOLS_BIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER))
5353

54-
STATICCHECK_VER := 2025.1.1
54+
STATICCHECK_VER := master
5555
STATICCHECK_BIN := staticcheck
5656
STATICCHECK := $(abspath $(TOOLS_BIN_DIR)/$(STATICCHECK_BIN)-$(STATICCHECK_VER))
5757

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 hub-net-controller-manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.6 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.9 AS builder
33

44
ARG GOOS=linux
55
ARG GOARCH=amd64

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 mcs-controller-manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.6 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.9 AS builder
33

44
ARG GOOS=linux
55
ARG GOARCH=amd64

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 member-net-controller-manager binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.6 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.9 AS builder
33

44
ARG GOOS=linux
55
ARG GOARCH=amd64

0 commit comments

Comments
 (0)