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
11 changes: 7 additions & 4 deletions .github/workflows/docs-gen-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,20 @@ jobs:
name: Generate and push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # tag=v6.0.1

- run: git fetch origin gh-pages
- run: git fetch origin '+refs/tags/v*:refs/tags/v*' --no-tags

- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
- name: Setup Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1.0
with:
go-version: v1.24.9
go-version: v1.24.11
cache: true

- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 #tag=v5.5.0
- name: Setup Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #tag=v6.1.0
with:
python-version: "3.10"
cache: "pip"
Expand Down
10 changes: 5 additions & 5 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.9-1
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
command:
- make
- verify
Expand All @@ -24,7 +24,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
command:
- make
- lint
Expand Down Expand Up @@ -65,7 +65,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
command:
- make
- test
Expand All @@ -86,7 +86,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
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.9-1
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
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.9 AS builder
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.11 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down