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
10 changes: 5 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
go-version-file: go.mod

- name: Restore Go modules cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /go/pkg/mod
key: go-mod-${{ hashFiles('**/go.sum') }}
Expand All @@ -35,7 +35,7 @@ jobs:
run: git gc

- name: Save source code cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .git
key: go-src-${{ github.sha }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
go-version-file: go.mod

- name: Restore Go modules cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /go/pkg/mod
key: go-mod-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
go-version-file: go.mod

- name: Restore Go modules cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /go/pkg/mod
key: go-mod-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
go-version-file: go.mod

- name: Restore Go modules cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /go/pkg/mod
key: go-mod-${{ hashFiles('**/go.sum') }}
Expand Down
Loading