Skip to content

Commit ca938ec

Browse files
committed
update go 1.24.6
1 parent 7c04cbb commit ca938ec

File tree

69 files changed

+76
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+76
-77
lines changed

.golangci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
run:
55
deadline: 5m
6-
go: '1.22'
6+
go: "1.24"
77

88
linters:
99
enable-all: true
@@ -52,14 +52,14 @@ linters-settings:
5252
min-complexity: 30
5353
revive:
5454
rules:
55-
- name: var-naming
56-
arguments:
57-
- [ "ID", "API", "JSON" ] # AllowList
58-
- [ ] # DenyList
55+
- name: var-naming
56+
arguments:
57+
- ["ID", "API", "JSON"] # AllowList
58+
- [] # DenyList
5959
gomnd:
6060
ignored-functions:
61-
- os.WriteFile
62-
- make
61+
- os.WriteFile
62+
- make
6363
gomoddirectives:
6464
replace-local: true
6565
gosec:

api/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/kustomize/api
22

3-
go 1.22.7
3+
go 1.24.0
44

55
require (
66
github.com/blang/semver/v4 v4.0.0

cmd/config/docs/api-conventions/functions-impl.md

Lines changed: 1 addition & 1 deletion

cmd/config/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/kustomize/cmd/config
22

3-
go 1.22.7
3+
go 1.24.0
44

55
require (
66
github.com/go-errors/errors v1.4.2

cmd/config/internal/commands/e2e/e2econtainerconfig/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2019 The Kubernetes Authors.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM public.ecr.aws/docker/library/golang:1.22.7-bullseye
4+
FROM public.ecr.aws/docker/library/golang:1.24.6-bullseye
55
ENV CGO_ENABLED=0
66
WORKDIR /go/src/
77

cmd/config/internal/commands/e2e/e2econtainerconfig/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/kustomize/cmd/config/internal/commands/e2e/e2econtainerconfig
22

3-
go 1.22.7
3+
go 1.24.0
44

55
require sigs.k8s.io/kustomize/kyaml v0.14.2
66

cmd/config/internal/commands/e2e/e2econtainerenvgenerator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2019 The Kubernetes Authors.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM public.ecr.aws/docker/library/golang:1.22.7-bullseye
4+
FROM public.ecr.aws/docker/library/golang:1.24.6-bullseye
55
ENV CGO_ENABLED=0
66
WORKDIR /go/src/
77

cmd/config/internal/commands/e2e/e2econtainerenvgenerator/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/kustomize/cmd/config/internal/commands/e2e/e2econtainerenvgenerator
22

3-
go 1.22.7
3+
go 1.24.0
44

55
require sigs.k8s.io/kustomize/kyaml v0.14.2
66

cmd/config/internal/commands/e2e/e2econtainermountbind/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2019 The Kubernetes Authors.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM public.ecr.aws/docker/library/golang:1.22.7-bullseye
4+
FROM public.ecr.aws/docker/library/golang:1.24.6-bullseye
55
ENV CGO_ENABLED=0
66
WORKDIR /go/src/
77

cmd/config/internal/commands/e2e/e2econtainermountbind/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/kustomize/cmd/config/internal/commands/e2e/e2econtainer-render-helm-chart
22

3-
go 1.22.7
3+
go 1.24.0
44

55
require sigs.k8s.io/kustomize/kyaml v0.14.2
66

0 commit comments

Comments
 (0)