Skip to content

Commit ec0696c

Browse files
authored
Merge pull request #4944 from camilamacedo86/upgrade-go-patch
✨ (CLI;go/v4) Upgrade golang version from 1.24.0 to 1.24.5
2 parents 113de72 + 7ec818e commit ec0696c

File tree

8 files changed

+8
-8
lines changed
  • docs/book/src
    • cronjob-tutorial/testdata/project
    • getting-started/testdata/project
    • multiversion-tutorial/testdata/project
  • pkg/plugins/golang/v4/scaffolds/internal/templates
  • testdata

8 files changed

+8
-8
lines changed

docs/book/src/cronjob-tutorial/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tutorial.kubebuilder.io/project
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

docs/book/src/getting-started/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/memcached
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

docs/book/src/multiversion-tutorial/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tutorial.kubebuilder.io/project
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/kubebuilder/v4
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/gobuffalo/flect v1.0.3

pkg/plugins/golang/v4/scaffolds/internal/templates/gomod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (f *GoMod) SetTemplateDefaults() error {
4545

4646
const goModTemplate = `module {{ .Repo }}
4747
48-
go 1.24.0
48+
go 1.24.5
4949
5050
require (
5151
sigs.k8s.io/controller-runtime {{ .ControllerRuntimeVersion }}

testdata/project-v4-multigroup/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/kubebuilder/testdata/project-v4-multigroup
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/cert-manager/cert-manager v1.18.2

testdata/project-v4-with-plugins/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/kubebuilder/testdata/project-v4-with-plugins
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

testdata/project-v4/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/kubebuilder/testdata/project-v4
22

3-
go 1.24.0
3+
go 1.24.5
44

55
require (
66
github.com/cert-manager/cert-manager v1.18.2

0 commit comments

Comments
 (0)