Commit ccf3b93 1 parent 73dd7b3 commit ccf3b93 Copy full SHA for ccf3b93
File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 28
28
uses : actions/cache@v4
29
29
with :
30
30
path : bin
31
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
31
+ key : tools- ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
32
32
33
33
- name : Install tools
34
34
run : make install-tools
@@ -45,15 +45,15 @@ jobs:
45
45
46
46
- name : Set up Go
47
47
uses : actions/setup-go@v5
48
+ id : setup-go
48
49
with :
49
50
go-version : " ~1.24.1"
50
51
51
52
- name : Cache tools
52
53
uses : actions/cache@v4
53
- id : setup-go
54
54
with :
55
55
path : bin
56
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
56
+ key : tools- ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
57
57
58
58
- name : Install tools
59
59
run : make install-tools
Original file line number Diff line number Diff line change @@ -62,13 +62,16 @@ jobs:
62
62
id : setup-go
63
63
with :
64
64
go-version : " ~1.24.1"
65
+
65
66
- name : Cache tools
66
67
uses : actions/cache@v4
67
68
with :
68
69
path : bin
69
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
70
+ key : tools-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
71
+
70
72
- name : Install tools
71
73
run : make install-tools
74
+
72
75
- name : Prepare e2e tests
73
76
env :
74
77
KUBE_VERSION : ${{ matrix.kube-version }}
Original file line number Diff line number Diff line change 35
35
uses : actions/cache@v4
36
36
with :
37
37
path : bin
38
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
38
+ key : tools- ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
39
39
40
40
- name : Install tools
41
41
run : make install-tools
You can’t perform that action at this time.
0 commit comments