We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42bee6 commit 6861b80Copy full SHA for 6861b80
.github/workflows/nightly.yml
@@ -51,9 +51,11 @@ jobs:
51
with:
52
go-version-file: go.mod
53
check-latest: true
54
- - uses: ./.github/actions/go-cache
55
- with:
56
- go: ${{ steps.setup.setup-go.go_version }}
+ - name: Warm cache
+ if: steps.setup-go.outputs.cache-hit != 'true'
+ run: |
57
+ # go mod download
58
+ find . -name go.mod -type f -execdir go mod download \;
59
- id: mod
60
run: ./.github/script/nightly-module.sh
61
- id: novelty
0 commit comments