We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b189b1 commit 0bc1696Copy full SHA for 0bc1696
.github/workflows/cron.yml
@@ -24,7 +24,15 @@ jobs:
24
25
- name: Update Go dependencies
26
run: |
27
+ # Attempt to update all dependencies.
28
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.
36
go mod tidy
37
38
- name: Create Pull Request
0 commit comments