Skip to content

Commit c75f3c4

Browse files
authored
[Cherry-pick][CI] Pin kustomize to v5.3.0 (#2067) (#2121)
1 parent ead62eb commit c75f3c4

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/consistency-check.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-go@v3
2222
with:
2323
# Use the same go version with build job
24-
go-version: '1.20'
24+
go-version: v1.20
2525

2626
- name: Check golang version
2727
working-directory: ./ray-operator
@@ -44,11 +44,11 @@ jobs:
4444
with:
4545
fetch-depth: 0
4646

47-
- name: Set up Go 1.19.x
48-
uses: actions/setup-go@v2
47+
- name: Set up Go
48+
uses: actions/setup-go@v3
4949
with:
5050
# Use the same go version with build job
51-
go-version: '1.19'
51+
go-version: v1.20
5252

5353
- name: Check golang version
5454
working-directory: ./ray-operator
@@ -69,10 +69,10 @@ jobs:
6969
fetch-depth: 0
7070

7171
- name: Set up Go
72-
uses: actions/setup-go@v2
72+
uses: actions/setup-go@v3
7373
with:
7474
# Use the same go version with build job
75-
go-version: '1.20'
75+
go-version: v1.20
7676

7777
- name: Update CRD/RBAC YAML files
7878
working-directory: ./ray-operator

.github/workflows/image-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v3
2323
with:
24-
go-version: '1.20'
24+
go-version: v1.20
2525

2626
- name: Check out code into the Go module directory
2727
uses: actions/checkout@v2
@@ -81,7 +81,7 @@ jobs:
8181
- name: Set up Go
8282
uses: actions/setup-go@v3
8383
with:
84-
go-version: '1.20'
84+
go-version: v1.20
8585

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

.github/workflows/test-job.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-go@v3
1717
with:
1818
# Use the same go version with build job
19-
go-version: '1.20'
19+
go-version: v1.20
2020

2121
- name: Check out code into the Go module directory
2222
uses: actions/checkout@v2
@@ -119,7 +119,7 @@ jobs:
119119
- name: Set up Go
120120
uses: actions/setup-go@v3
121121
with:
122-
go-version: '1.20'
122+
go-version: v1.20
123123

124124
- name: Check out code into the Go module directory
125125
uses: actions/checkout@v2
@@ -200,7 +200,7 @@ jobs:
200200
- name: Set up Go
201201
uses: actions/setup-go@v3
202202
with:
203-
go-version: '1.20'
203+
go-version: v1.20
204204

205205
- name: Check out code into the Go module directory
206206
uses: actions/checkout@v2
@@ -274,7 +274,7 @@ jobs:
274274
- name: Set up Go
275275
uses: actions/setup-go@v3
276276
with:
277-
go-version: '1.20'
277+
go-version: v1.20
278278

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

ray-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessar
151151
KUSTOMIZE = $(LOCALBIN)/kustomize
152152
$(KUSTOMIZE): $(LOCALBIN)
153153
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.
154-
test -s $(KUSTOMIZE) || GOBIN=$(LOCALBIN) go install sigs.k8s.io/kustomize/kustomize/v5@latest
154+
test -s $(KUSTOMIZE) || GOBIN=$(LOCALBIN) go install sigs.k8s.io/kustomize/kustomize/v5@v5.3.0
155155

156156
ENVTEST = $(LOCALBIN)/setup-envtest
157157
$(ENVTEST): $(LOCALBIN)

0 commit comments

Comments
 (0)