Skip to content

Commit 4ceb837

Browse files
authored
[release/v2.26] Bump Go version to v1.23.12 (#7557)
Signed-off-by: archups <[email protected]>
1 parent 6ea3080 commit 4ceb837

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.prow/api.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ presubmits:
3232
preset-goproxy: "true"
3333
spec:
3434
containers:
35-
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
35+
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
3636
command:
3737
- "./hack/ci/run-api-e2e.sh"
3838
env:
@@ -60,7 +60,7 @@ presubmits:
6060
preset-goproxy: "true"
6161
spec:
6262
containers:
63-
- image: quay.io/kubermatic/build:go-1.23-node-20-13
63+
- image: quay.io/kubermatic/build:go-1.23-node-20-14
6464
command:
6565
- make
6666
args:
@@ -81,7 +81,7 @@ presubmits:
8181
preset-goproxy: "true"
8282
spec:
8383
containers:
84-
- image: quay.io/kubermatic/build:go-1.23-node-20-13
84+
- image: quay.io/kubermatic/build:go-1.23-node-20-14
8585
command:
8686
- make
8787
- api-lint
@@ -101,7 +101,7 @@ presubmits:
101101
preset-goproxy: "true"
102102
spec:
103103
containers:
104-
- image: quay.io/kubermatic/build:go-1.23-node-20-13
104+
- image: quay.io/kubermatic/build:go-1.23-node-20-14
105105
command:
106106
- make
107107
- api-verify

.prow/common.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ presubmits:
2121
preset-goproxy: "true"
2222
spec:
2323
containers:
24-
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
24+
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
2525
command:
2626
- ./hack/ci/verify.sh
2727
resources:

.prow/frontend.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ presubmits:
215215
preset-goproxy: "true"
216216
spec:
217217
containers:
218-
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
218+
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
219219
command:
220220
- make
221221
- web-check-dependencies
@@ -231,7 +231,7 @@ presubmits:
231231
preset-goproxy: "true"
232232
spec:
233233
containers:
234-
- image: quay.io/kubermatic/build:go-1.23-node-20-13
234+
- image: quay.io/kubermatic/build:go-1.23-node-20-14
235235
command:
236236
- make
237237
- web-lint
@@ -251,7 +251,7 @@ presubmits:
251251
preset-goproxy: "true"
252252
spec:
253253
containers:
254-
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
254+
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
255255
command:
256256
- make
257257
- web-check

hack/verify-spelling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919
cd $(dirname $0)/..
2020
source hack/lib.sh
2121

22-
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-13 containerize ./hack/verify-spelling.sh
22+
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-14 containerize ./hack/verify-spelling.sh
2323

2424
echodate "Running codespell..."
2525

modules/api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module k8c.io/dashboard/v2
22

33
go 1.23.0
44

5-
toolchain go1.23.7
5+
toolchain go1.23.12
66

77
require (
88
code.cloudfoundry.org/go-pubsub v0.0.0-20231211165245-0e22ad1266d6

modules/api/hack/gen-api-client.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ source hack/lib.sh
2424

2525
API=modules/api
2626

27-
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-13 containerize ./modules/api/hack/gen-api-client.sh
27+
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-14 containerize ./modules/api/hack/gen-api-client.sh
2828

2929
cd $API/cmd/kubermatic-api/
3030
SWAGGER_FILE="swagger.json"

modules/api/hack/update-swagger.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ source hack/lib.sh
2121

2222
API=modules/api
2323

24-
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-13 containerize ./$API/hack/update-swagger.sh
24+
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-14 containerize ./$API/hack/update-swagger.sh
2525

2626
echodate "Generating swagger spec"
2727
cd $API/cmd/kubermatic-api/

modules/api/hack/verify-licenses.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ source hack/lib.sh
2121

2222
API=modules/api
2323

24-
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-13 containerize ./$API/hack/verify-licenses.sh
24+
CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.23-node-20-14 containerize ./$API/hack/verify-licenses.sh
2525

2626
cd $API
2727
go mod vendor

modules/web/containers/chrome-headless/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
15+
FROM quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
1616

1717
LABEL maintainer="[email protected]"
1818

modules/web/containers/custom-dashboard/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-13
15+
FROM quay.io/kubermatic/build:go-1.23-node-20-kind-0.29-14
1616
LABEL maintainer="[email protected]"
1717

1818
ENV NG_CLI_ANALYTICS=ci

0 commit comments

Comments
 (0)