Skip to content

Commit 52e494a

Browse files
authored
Merge pull request #112 from embik/go-1.24.8-3
Update to Go 1.24.8
2 parents 44d4a7b + 17c66a7 commit 52e494a

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/docs-gen-and-push.yaml

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

3434
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
3535
with:
36-
go-version: v1.24.3
36+
go-version: v1.24.8
3737
cache: true
3838

3939
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 #tag=v5.5.0
4040
with:
41-
python-version: '3.10'
42-
cache: 'pip'
41+
python-version: "3.10"
42+
cache: "pip"
4343

4444
# mike does not support giving CLI flags for mkdocs, but we also do not
4545
# want to permanently enable strict mode, so here we enable it just for this

.prow.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ presubmits:
77
preset-goproxy: "true"
88
spec:
99
containers:
10-
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
10+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
1111
command:
1212
- make
1313
- verify
@@ -24,7 +24,7 @@ presubmits:
2424
preset-goproxy: "true"
2525
spec:
2626
containers:
27-
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
27+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
2828
command:
2929
- make
3030
- lint
@@ -47,7 +47,7 @@ presubmits:
4747
- hack/ci/build-image.sh
4848
env:
4949
- name: DRY_RUN
50-
value: '1'
50+
value: "1"
5151
# docker-in-docker needs privileged mode
5252
securityContext:
5353
privileged: true
@@ -65,13 +65,13 @@ presubmits:
6565
preset-goproxy: "true"
6666
spec:
6767
containers:
68-
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
68+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
6969
command:
7070
- make
7171
- test
7272
env:
7373
- name: USE_GOTESTSUM
74-
value: '1'
74+
value: "1"
7575
resources:
7676
requests:
7777
memory: 4Gi
@@ -86,7 +86,7 @@ presubmits:
8686
preset-goproxy: "true"
8787
spec:
8888
containers:
89-
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
89+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
9090
command:
9191
- hack/ci/run-e2e-tests.sh
9292
resources:
@@ -106,7 +106,7 @@ presubmits:
106106
preset-goproxy: "true"
107107
spec:
108108
containers:
109-
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
109+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
110110
command:
111111
- hack/ci/run-e2e-tests.sh
112112
env:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.4 AS builder
2+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.8 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

hack/ci/run-e2e-tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ if [ -n "${KCP_TAG:-}" ]; then
3232
cd "$here"
3333
rm -rf "$tmpdir"
3434

35-
# kcp's containers are tagged with the first 8 characters of the Git hash
36-
KCP_TAG="${KCP_TAG:0:8}"
35+
# kcp's containers are tagged with the first 9 characters of the Git hash
36+
KCP_TAG="${KCP_TAG:0:9}"
3737
fi
3838

3939
echo "kcp image tag.......: $KCP_TAG"
@@ -60,7 +60,7 @@ docker load --input /kindest.tar
6060

6161
export KUBECONFIG=$(mktemp)
6262
echo "Creating kind cluster $KIND_CLUSTER_NAME..."
63-
kind create cluster --name "$KIND_CLUSTER_NAME"
63+
kind create cluster --name "$KIND_CLUSTER_NAME" --image kindest/node:v1.32.2
6464
chmod 600 "$KUBECONFIG"
6565

6666
# store logs as artifacts

0 commit comments

Comments
 (0)