File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,15 @@ jobs:
20
20
21
21
- name : Set up Go
22
22
uses : actions/setup-go@v5
23
+ id : setup-go
23
24
with :
24
25
go-version : " ~1.21.1"
25
26
26
27
- name : Cache tools
27
28
uses : actions/cache@v4
28
29
with :
29
30
path : bin
30
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
31
+ key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
31
32
32
33
- name : Install tools
33
34
run : make install-tools
49
50
50
51
- name : Cache tools
51
52
uses : actions/cache@v4
53
+ id : setup-go
52
54
with :
53
55
path : bin
54
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
56
+ key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
55
57
56
58
- name : Install tools
57
59
run : make install-tools
Original file line number Diff line number Diff line change @@ -44,13 +44,14 @@ jobs:
44
44
uses : actions/checkout@v4
45
45
- name : Set up Go
46
46
uses : actions/setup-go@v5
47
+ id : setup-go
47
48
with :
48
49
go-version : " ~1.21.3"
49
50
- name : Cache tools
50
51
uses : actions/cache@v4
51
52
with :
52
53
path : bin
53
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
54
+ key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
54
55
- name : Install chainsaw
55
56
56
57
- name : Install tools
Original file line number Diff line number Diff line change 24
24
25
25
- name : Set up Go
26
26
uses : actions/setup-go@v5
27
+ id : setup-go
27
28
with :
28
29
go-version : " ~1.21.1"
29
30
34
35
uses : actions/cache@v4
35
36
with :
36
37
path : bin
37
- key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
38
+ key : ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }}
38
39
39
40
- name : Install tools
40
41
run : make install-tools
You can’t perform that action at this time.
0 commit comments