Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs-gen-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:

- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
with:
go-version: v1.24.3
go-version: v1.24.8
cache: true

- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 #tag=v5.5.0
with:
python-version: '3.10'
cache: 'pip'
python-version: "3.10"
cache: "pip"

# mike does not support giving CLI flags for mkdocs, but we also do not
# want to permanently enable strict mode, so here we enable it just for this
Expand Down
14 changes: 7 additions & 7 deletions .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
command:
- make
- verify
Expand All @@ -24,7 +24,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
command:
- make
- lint
Expand All @@ -47,7 +47,7 @@ presubmits:
- hack/ci/build-image.sh
env:
- name: DRY_RUN
value: '1'
value: "1"
# docker-in-docker needs privileged mode
securityContext:
privileged: true
Expand All @@ -65,13 +65,13 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
command:
- make
- test
env:
- name: USE_GOTESTSUM
value: '1'
value: "1"
resources:
requests:
memory: 4Gi
Expand All @@ -86,7 +86,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
command:
- hack/ci/run-e2e-tests.sh
resources:
Expand All @@ -106,7 +106,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.4-1
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
command:
- hack/ci/run-e2e-tests.sh
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.4 AS builder
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.8 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
6 changes: 3 additions & 3 deletions hack/ci/run-e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ if [ -n "${KCP_TAG:-}" ]; then
cd "$here"
rm -rf "$tmpdir"

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

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

export KUBECONFIG=$(mktemp)
echo "Creating kind cluster $KIND_CLUSTER_NAME…"
kind create cluster --name "$KIND_CLUSTER_NAME"
kind create cluster --name "$KIND_CLUSTER_NAME" --image kindest/node:v1.32.2
chmod 600 "$KUBECONFIG"

# store logs as artifacts
Expand Down