Skip to content

Commit d6b232c

Browse files
haoqing0110claude
andauthored
🌱 Upgrade Go version to 1.25 (#350)
* Upgrade Go version to 1.25 Update Go version from 1.24 to 1.25 across all files: - go.mod - GitHub workflow files (go-presubmit.yml, go-postsubmit.yml, go-release.yml) - Dockerfile.example πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]> Signed-off-by: Qing Hao <[email protected]> * Use golang:1.25-bookworm instead of bullseye Update Dockerfile to use Debian bookworm (12) instead of bullseye (11) for the Go 1.25 base image. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]> Signed-off-by: Qing Hao <[email protected]> --------- Signed-off-by: Qing Hao <[email protected]> Co-authored-by: Claude Sonnet 4.5 <[email protected]>
1 parent 1a0a9be commit d6b232c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

β€Ž.github/workflows/go-postsubmit.ymlβ€Ž

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

99
env:
1010
# Common versions
11-
GO_VERSION: '1.24'
11+
GO_VERSION: '1.25'
1212
GO_REQUIRED_MIN_VERSION: ''
1313
GOPATH: '/home/runner/work/addon-framework/addon-framework/go'
1414
defaults:

β€Ž.github/workflows/go-presubmit.ymlβ€Ž

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

1010
env:
1111
# Common versions
12-
GO_VERSION: '1.24'
12+
GO_VERSION: '1.25'
1313
GO_REQUIRED_MIN_VERSION: ''
1414

1515
jobs:

β€Ž.github/workflows/go-release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'v*.*.*'
77
env:
88
# Common versions
9-
GO_VERSION: '1.24'
9+
GO_VERSION: '1.25'
1010
GO_REQUIRED_MIN_VERSION: ''
1111
GITHUB_REF: ${{ github.ref }}
1212

β€Žbuild/Dockerfile.exampleβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-bullseye AS builder
1+
FROM golang:1.25-bookworm AS builder
22
WORKDIR /go/src/open-cluster-management.io/addon-framework
33
COPY . .
44
ENV GO_PACKAGE open-cluster-management.io/addon-framework

β€Žgo.modβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module open-cluster-management.io/addon-framework
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/evanphx/json-patch/v5 v5.9.11

0 commit comments

Comments
Β (0)