Skip to content

Commit d92c2d5

Browse files
ryanzhang-ossRyan Zhang
andauthored
chore: fix CVE-2025-22871 (#40)
fix CVE-2025-22871 Signed-off-by: Ryan Zhang <zhangryan@microsoft.com> Co-authored-by: Ryan Zhang <zhangryan@microsoft.com>
1 parent a2190f1 commit d92c2d5

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
1414

1515
env:
16-
GO_VERSION: '1.23.6'
16+
GO_VERSION: '1.23.8'
1717

1818
jobs:
1919
detect-noop:

.github/workflows/code-lint.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.6'
17+
GO_VERSION: '1.23.8'
1818

1919
jobs:
2020

.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_AGENT_IMAGE_NAME: member-agent
1919
REFRESH_TOKEN_IMAGE_NAME: refresh-token
2020

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

2323
jobs:
2424
export-registry:

.github/workflows/upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
2121

2222
env:
23-
GO_VERSION: '1.23.6'
23+
GO_VERSION: '1.23.8'
2424

2525
jobs:
2626
detect-noop:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
timeout: 15m
3-
go: '1.23.6'
3+
go: '1.23.8'
44

55
linters-settings:
66
stylecheck:

docker/hub-agent.Dockerfile

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

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/member-agent.Dockerfile

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

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/refresh-token.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the hubagent binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.6 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.8 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 github.com/kubefleet-dev/kubefleet
22

3-
go 1.23.6
3+
go 1.23.8
44

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

0 commit comments

Comments
 (0)