Skip to content

Commit 89c2ca8

Browse files
authored
chore: upgrade Go version from 1.23.8 to 1.24.4 (#108)
1 parent 86e1ff9 commit 89c2ca8

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.8'
16+
GO_VERSION: '1.24.4'
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.8'
17+
GO_VERSION: '1.24.4'
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.8'
21+
GO_VERSION: '1.24.4'
2222

2323
jobs:
2424
export-registry:

.github/workflows/upgrade.yml

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

1919
env:
20-
GO_VERSION: '1.23.8'
20+
GO_VERSION: '1.24.4'
2121

2222
jobs:
2323
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.8'
3+
go: '1.24.4'
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.8 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.4 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.8 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.4 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.8 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.4 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.8
3+
go 1.24.4
44

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

0 commit comments

Comments
 (0)