Skip to content

Commit 303387a

Browse files
authored
chore: upgrade go to 1.25.8 (kubefleet-dev#550)
1 parent 0e6d623 commit 303387a

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

.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.24.13'
16+
GO_VERSION: '1.25.8'
1717
CERT_MANAGER_VERSION: 'v1.16.2'
1818

1919
jobs:

.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.24.13"
17+
GO_VERSION: "1.25.8"
1818

1919
jobs:
2020
detect-noop:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
HUB_AGENT_IMAGE_NAME: hub-agent
2121
MEMBER_AGENT_IMAGE_NAME: member-agent
2222
REFRESH_TOKEN_IMAGE_NAME: refresh-token
23-
GO_VERSION: "1.24.13"
23+
GO_VERSION: "1.25.8"
2424

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

21-
GO_VERSION: '1.24.13'
21+
GO_VERSION: '1.25.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
@@ -17,7 +17,7 @@ on:
1717
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
1818

1919
env:
20-
GO_VERSION: '1.24.13'
20+
GO_VERSION: '1.25.8'
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.24.13'
3+
go: '1.25.8'
44

55
linters-settings:
66
stylecheck:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ TOOLS_BIN_DIR := $(abspath $(TOOLS_DIR)/bin)
4949
# Binaries
5050
# Note: Need to use abspath so we can invoke these from subdirectories
5151

52-
CONTROLLER_GEN_VER := v0.16.0
52+
CONTROLLER_GEN_VER := v0.20.0
5353
CONTROLLER_GEN_BIN := controller-gen
5454
CONTROLLER_GEN := $(abspath $(TOOLS_BIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER))
5555

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.24.13 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.8 AS builder
33

44
ARG GOOS=linux
55
ARG GOARCH=amd64

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.24.13 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.8 AS builder
33

44
ARG GOOS=linux
55
ARG GOARCH=amd64

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 refreshtoken binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.13 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.8 AS builder
33

44
ARG GOOS="linux"
55
ARG GOARCH="amd64"

0 commit comments

Comments
 (0)