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
@@ -57,15 +57,15 @@ jobs:
57
57
runs-on : [ubuntu-latest]
58
58
steps :
59
59
- uses : actions/checkout@v1
60
- - uses : actions/setup-go@v1
60
+ - uses : actions/setup-go@v5
61
61
with :
62
62
go-version : ' 1.22'
63
63
- name : Install latest version of Kind
64
64
run : |
65
- go build -o /usr/local/bin/kind sigs.k8s.io/kind
65
+ go get sigs.k8s.io/kind
66
66
- name : Create Kind cluster
67
67
run : |
68
- PATH=/usr/local/bin/:$PATH kind create cluster --config .github/workflows/kind-config.yaml
68
+ kind create cluster --config .github/workflows/kind-config.yaml
69
69
- name : Run some sanity checks
70
70
# kubectl is already installed on the Github Ubuntu worker
71
71
run : |
You can’t perform that action at this time.
0 commit comments