examples: hash go.mod, not go.sum

go.sum isn't a lock file and doesn't represent dependencies
This commit is contained in:
Peter Bourgon
2024-05-10 06:02:48 +02:00
committed by GitHub
parent 0c45773b62
commit 044254044b

View File

@@ -190,7 +190,7 @@ steps:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-go-
```
@@ -203,7 +203,7 @@ steps:
path: |
~/Library/Caches/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-go-
```
@@ -216,7 +216,7 @@ steps:
path: |
~\AppData\Local\go-build
~\go\pkg\mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-go-
```