File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -116,9 +116,15 @@ jobs:
116
116
- name : Cache go module
117
117
uses : actions/cache@v3
118
118
with :
119
- path : ~/go/pkg/mod
119
+ path : |
120
+ ~/.cache/go-build
121
+ ~/go/pkg/mod
122
+ ~/Library/Caches/go-build
123
+ ~\AppData\Local\go-build
124
+ ~\go\pkg\mod
120
125
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
121
- restore-keys : ${{ runner.os }}-go-
126
+ restore-keys : |
127
+ ${{ runner.os }}-go-
122
128
123
129
- name : Get dependencies
124
130
run : |
Original file line number Diff line number Diff line change @@ -127,6 +127,19 @@ jobs:
127
127
fetch-depth : 0
128
128
ref : ${{ github.event.pull_request.head.sha }}
129
129
130
+ - name : Cache go module
131
+ uses : actions/cache@v3
132
+ with :
133
+ path : |
134
+ ~/.cache/go-build
135
+ ~/go/pkg/mod
136
+ ~/Library/Caches/go-build
137
+ ~\AppData\Local\go-build
138
+ ~\go\pkg\mod
139
+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
140
+ restore-keys : |
141
+ ${{ runner.os }}-go-
142
+
130
143
- name : Get dependencies
131
144
run : |
132
145
go get -v -t -d ./...
You can’t perform that action at this time.
0 commit comments