mirror of https://github.com/kubernetes/kops.git
Merge pull request #17396 from rifelpet/132-go-1.23.9
[release-1.32] Upgrade to Go 1.23.9
This commit is contained in:
commit
4180bf553a
|
@ -5,7 +5,7 @@ options:
|
||||||
machineType: 'N1_HIGHCPU_32'
|
machineType: 'N1_HIGHCPU_32'
|
||||||
steps:
|
steps:
|
||||||
# Push the images
|
# Push the images
|
||||||
- name: 'docker.io/library/golang:1.23.5-bookworm'
|
- name: 'docker.io/library/golang:1.23.9-bookworm'
|
||||||
id: images
|
id: images
|
||||||
entrypoint: make
|
entrypoint: make
|
||||||
env:
|
env:
|
||||||
|
@ -21,7 +21,7 @@ steps:
|
||||||
- dns-controller-push
|
- dns-controller-push
|
||||||
- kube-apiserver-healthcheck-push
|
- kube-apiserver-healthcheck-push
|
||||||
# Push the artifacts
|
# Push the artifacts
|
||||||
- name: 'docker.io/library/golang:1.23.5-bookworm'
|
- name: 'docker.io/library/golang:1.23.9-bookworm'
|
||||||
id: artifacts
|
id: artifacts
|
||||||
entrypoint: make
|
entrypoint: make
|
||||||
env:
|
env:
|
||||||
|
@ -36,7 +36,7 @@ steps:
|
||||||
args:
|
args:
|
||||||
- gcs-upload-and-tag
|
- gcs-upload-and-tag
|
||||||
# Build cloudbuild artifacts (for attestation)
|
# Build cloudbuild artifacts (for attestation)
|
||||||
- name: 'docker.io/library/golang:1.23.5-bookworm'
|
- name: 'docker.io/library/golang:1.23.9-bookworm'
|
||||||
id: cloudbuild-artifacts
|
id: cloudbuild-artifacts
|
||||||
entrypoint: make
|
entrypoint: make
|
||||||
env:
|
env:
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,7 +1,7 @@
|
||||||
module k8s.io/kops
|
module k8s.io/kops
|
||||||
|
|
||||||
// This should be kept in sync with cloudbuild.yaml and the other go.mod files
|
// This should be kept in sync with cloudbuild.yaml and the other go.mod files
|
||||||
go 1.23.5
|
go 1.23.9
|
||||||
|
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go/compute/metadata v0.5.2
|
cloud.google.com/go/compute/metadata v0.5.2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module k8s.io/kops/hack
|
module k8s.io/kops/hack
|
||||||
|
|
||||||
go 1.23.5
|
go 1.23.9
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/client9/misspell v0.3.4
|
github.com/client9/misspell v0.3.4
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module k8s.io/kops/tests/e2e
|
module k8s.io/kops/tests/e2e
|
||||||
|
|
||||||
go 1.23.5
|
go 1.23.9
|
||||||
|
|
||||||
replace k8s.io/kops => ../../.
|
replace k8s.io/kops => ../../.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module k8s.io/kops/tools/otel/traceserver
|
module k8s.io/kops/tools/otel/traceserver
|
||||||
|
|
||||||
go 1.23.5
|
go 1.23.9
|
||||||
|
|
||||||
require (
|
require (
|
||||||
go.opentelemetry.io/proto/otlp v1.3.1
|
go.opentelemetry.io/proto/otlp v1.3.1
|
||||||
|
|
Loading…
Reference in New Issue