Skip to content

Commit 66facea

Browse files
authored
Merge pull request #127 from xrstf/go12411
update to Go 1.24.11, update actions
2 parents d4b5a9c + 3fc11a9 commit 66facea

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,20 @@ jobs:
2626
name: Generate and push
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
29+
- name: Checkout
30+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # tag=v6.0.1
3031

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

34-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
35+
- name: Setup Go
36+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1.0
3537
with:
36-
go-version: v1.24.9
38+
go-version: v1.24.11
3739
cache: true
3840

39-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 #tag=v5.5.0
41+
- name: Setup Python
42+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #tag=v6.1.0
4043
with:
4144
python-version: "3.10"
4245
cache: "pip"

.prow.yaml

Lines changed: 5 additions & 5 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.9-1
10+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
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.9-1
27+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
2828
command:
2929
- make
3030
- lint
@@ -65,7 +65,7 @@ presubmits:
6565
preset-goproxy: "true"
6666
spec:
6767
containers:
68-
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
68+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
6969
command:
7070
- make
7171
- test
@@ -86,7 +86,7 @@ presubmits:
8686
preset-goproxy: "true"
8787
spec:
8888
containers:
89-
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
89+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
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.9-1
109+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
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.9 AS builder
2+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.11 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

0 commit comments

Comments
 (0)