Skip to content

Commit 3fea812

Browse files
committed
fixup! bump go to 1.26 in ray-operator docker file
fixup! bump go to 1.26 in remaining files
1 parent 20db0bc commit 3fea812

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

.github/workflows/consistency-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-go@v3
2525
with:
2626
# Use the same go version with build job
27-
go-version: v1.25
27+
go-version: v1.26
2828

2929
- name: Check golang version
3030
working-directory: ./ray-operator
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/setup-go@v3
5252
with:
5353
# Use the same go version with build job
54-
go-version: v1.25
54+
go-version: v1.26
5555

5656
- name: Check golang version
5757
working-directory: ./ray-operator
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions/setup-go@v3
7676
with:
7777
# Use the same go version with build job
78-
go-version: v1.25
78+
go-version: v1.26
7979

8080
- name: Update CRD/RBAC YAML files
8181
working-directory: ./ray-operator

.github/workflows/image-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: v1.25
23+
go-version: v1.26
2424

2525
- name: Check out code into the Go module directory
2626
uses: actions/checkout@v2
@@ -113,7 +113,7 @@ jobs:
113113
- name: Set up Go
114114
uses: actions/setup-go@v3
115115
with:
116-
go-version: v1.25
116+
go-version: v1.26
117117

118118
- name: Check out code into the Go module directory
119119
uses: actions/checkout@v2
@@ -266,7 +266,7 @@ jobs:
266266
- name: Set up Go
267267
uses: actions/setup-go@v3
268268
with:
269-
go-version: v1.25
269+
go-version: v1.26
270270

271271
- name: Check out code into the Go module directory
272272
uses: actions/checkout@v2

.github/workflows/kubectl-plugin-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Go
2828
uses: actions/setup-go@v5
2929
with:
30-
go-version: '1.25'
30+
go-version: '1.26'
3131
- name: GoReleaser
3232
uses: goreleaser/goreleaser-action@v6
3333
with:

.github/workflows/test-job.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Go
3939
uses: actions/setup-go@v3
4040
with:
41-
go-version: v1.25
41+
go-version: v1.26
4242

4343
- name: Check out code into the Go module directory
4444
uses: actions/checkout@v2
@@ -143,7 +143,7 @@ jobs:
143143
- name: Set up Go
144144
uses: actions/setup-go@v3
145145
with:
146-
go-version: v1.25
146+
go-version: v1.26
147147

148148
- name: Check out code into the Go module directory
149149
uses: actions/checkout@v2
@@ -172,7 +172,7 @@ jobs:
172172
- name: Set up Go
173173
uses: actions/setup-go@v3
174174
with:
175-
go-version: v1.25
175+
go-version: v1.26
176176

177177
- name: Check out code into the Go module directory
178178
uses: actions/checkout@v2
@@ -275,7 +275,7 @@ jobs:
275275
- name: Set up Go
276276
uses: actions/setup-go@v3
277277
with:
278-
go-version: v1.25
278+
go-version: v1.26
279279

280280
- name: Check out code into the Go module directory
281281
uses: actions/checkout@v2
@@ -388,7 +388,7 @@ jobs:
388388
- name: Set up Go
389389
uses: actions/setup-go@v3
390390
with:
391-
go-version: v1.25
391+
go-version: v1.26
392392

393393
- name: Check out code into the Go module directory
394394
uses: actions/checkout@v2

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exclude: _generated.go$|\.svg$|^third_party/|^proto/swagger/|^apiserver/pkg/swagger/datafile.go$|^docs/reference/api.md$|^config/grafana/|^dashboard/\.yarn/releases/yarn-.*\.cjs$
44

55
default_language_version:
6-
golang: 1.25.0
6+
golang: 1.26.0
77

88
repos:
99
- repo: https://github.com/pre-commit/pre-commit-hooks

historyserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ray-project/kuberay/historyserver
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
cloud.google.com/go/storage v1.59.2

kubectl-plugin/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This section walks through how to build and test the plugin.
77
| software | version | link |
88
|:---------|:---------|:-----------------------------|
99
| kubectl | >= 1.23 | [download][download-kubectl] |
10-
| go | v1.25 | [download-go] |
10+
| go | v1.26 | [download-go] |
1111

1212
## IDE Setup (VS Code)
1313

podpool/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ray-project/kuberay/podpool
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/virtual-kubelet/virtual-kubelet v1.12.0

ray-operator/DEVELOPMENT.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This section walks through how to build and test the operator in a running Kuber
88
| software | version | link |
99
|:---------|:--------:|--------------------------------------------------------------------:|
1010
| kubectl | v1.23.0+ | [download](https://kubernetes.io/docs/tasks/tools/install-kubectl/) |
11-
| go | v1.25 | [download](https://golang.org/dl/) |
11+
| go | v1.26 | [download](https://golang.org/dl/) |
1212
| docker | 19.03+ | [download](https://docs.docker.com/install/) |
1313

1414
Alternatively, you can use podman (version 4.5+) instead of docker. See [podman.io](https://podman.io/getting-started/installation) for installation instructions. The Makefile allows you to specify the container engine to use via the `ENGINE` variable. For example, to use podman, you can run `ENGINE=podman make docker-build`.
@@ -19,14 +19,14 @@ The instructions assume you have access to a running Kubernetes cluster via `kub
1919

2020
For local development, we recommend using [Kind](https://kind.sigs.k8s.io/) to create a Kubernetes cluster.
2121

22-
### Use go v1.25
22+
### Use go v1.26
2323

24-
Currently, KubeRay uses go v1.25 for development.
24+
Currently, KubeRay uses go v1.26 for development.
2525

2626
```bash
27-
go install golang.org/dl/go1.25.0@latest
28-
go1.25.0 download
29-
export GOROOT=$(go1.25.0 env GOROOT)
27+
go install golang.org/dl/go1.26.0@latest
28+
go1.26.0 download
29+
export GOROOT=$(go1.26.0 env GOROOT)
3030
export PATH="$GOROOT/bin:$PATH"
3131
```
3232

0 commit comments

Comments
 (0)