File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Set up go
15
- uses : actions/setup-go@v2
15
+ uses : actions/setup-go@v5
16
16
with :
17
17
go-version : ' 1.22'
18
18
stable : true
33
33
runs-on : ubuntu-latest
34
34
steps :
35
35
- name : Set up go
36
- uses : actions/setup-go@v2
36
+ uses : actions/setup-go@v5
37
37
with :
38
38
go-version : ' 1.22'
39
39
stable : true
@@ -56,15 +56,15 @@ jobs:
56
56
runs-on : [ubuntu-latest]
57
57
steps :
58
58
- uses : actions/checkout@v1
59
- - uses : actions/setup-go@v1
59
+ - uses : actions/setup-go@v5
60
60
with :
61
61
go-version : ' 1.22'
62
62
- name : Install latest version of Kind
63
63
run : |
64
- go build -o /usr/local/bin/kind sigs.k8s.io/kind
64
+ go get sigs.k8s.io/kind
65
65
- name : Create Kind cluster
66
66
run : |
67
- PATH=/usr/local/bin/:$PATH kind create cluster --config .github/workflows/kind-config.yaml
67
+ kind create cluster --config .github/workflows/kind-config.yaml
68
68
- name : Run some sanity checks
69
69
# kubectl is already installed on the Github Ubuntu worker
70
70
run : |
You can’t perform that action at this time.
0 commit comments