[server] Use the go.sum cache during CI lint (#2699)

Unrelated to the lint failures, I noticed that we were not using the
go.sum file during the lint steps.
This commit is contained in:
Manav Rathi
2024-08-14 16:02:27 +05:30
committed by GitHub

View File

@@ -21,7 +21,8 @@ jobs:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: "server/go.mod"
go-version-file: server/go.mod
cache-dependency-path: server/go.sum
cache: true
- name: Install dependencies