Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
with:
fetch-depth: 0
- name: cache go binaries
uses: actions/cache@v2
uses: actions/cache@v3.0.11
id: cache-go-bin
with:
path: ~/go/bin
key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }}
restore-keys: ${{ runner.os }}-go-bin

- uses: actions/cache@v2
- uses: actions/cache@v3.0.11
with:
path: |
~/go/pkg/mod
Expand Down Expand Up @@ -63,14 +63,14 @@ jobs:
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH

- name: cache go binaries
uses: actions/cache@v2
uses: actions/cache@v3.0.11
id: cache-go-bin
with:
path: ~/go/bin
key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }}
restore-keys: ${{ runner.os }}-go-bin

- uses: actions/cache@v2
- uses: actions/cache@v3.0.11
with:
path: |
~/go/pkg/mod
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/cache@v2
- uses: actions/cache@v3.0.11
with:
path: |
~/go/pkg
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/cache@v2
- uses: actions/cache@v3.0.11
with:
path: |
~/go/pkg/mod
Expand Down