chore: fix github action cache.
This commit is contained in:
parent
526a001ee8
commit
29d75cac57
13
.github/workflows/go-cross.yml
vendored
13
.github/workflows/go-cross.yml
vendored
@ -29,11 +29,16 @@ jobs:
|
|||||||
- name: Cache Go modules
|
- name: Cache Go modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
# In order:
|
||||||
|
# * Module download cache
|
||||||
|
# * Build cache (Linux)
|
||||||
|
# * Build cache (Mac)
|
||||||
|
# * Build cache (Windows)
|
||||||
path: |
|
path: |
|
||||||
~/go/pkg/mod # Module download cache
|
~/go/pkg/mod
|
||||||
~/.cache/go-build # Build cache (Linux)
|
~/.cache/go-build
|
||||||
~/Library/Caches/go-build # Build cache (Mac)
|
~/Library/Caches/go-build
|
||||||
'%LocalAppData%\go-build' # Build cache (Windows)
|
%LocalAppData%\go-build
|
||||||
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
|
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-${{ matrix.go-version }}-go-
|
${{ runner.os }}-${{ matrix.go-version }}-go-
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user