Skip to content

Commit 0bc1696

Browse files
committed
fix: ci cron job
1 parent 3b189b1 commit 0bc1696

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/cron.yml

+8
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,15 @@ jobs:
2424

2525
- name: Update Go dependencies
2626
run: |
27+
# Attempt to update all dependencies.
2728
go get -u
29+
30+
# Match the version of cockroachdb/pebble with that used by ethereum/go-ethereum.
31+
# https://github.com/ethereum/go-ethereum/blob/master/go.mod#L16C2-L16C66
32+
# TODO: Remove once ethereum/go-ethereum upgrades to cockroachdb/[email protected].
33+
go get github.com/cockroachdb/[email protected]
34+
35+
# Clean up dependencies.
2836
go mod tidy
2937
3038
- name: Create Pull Request

0 commit comments

Comments
 (0)