-
Notifications
You must be signed in to change notification settings - Fork 588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gomod: update go mod using go work sync
#946
Conversation
Hmm, I think we might need to do this in stages so we can tag new versions of the various sub-modules incrementally. |
d5f208d
to
bdef8c4
Compare
a2c1215
to
906d381
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yayy, green CI. Thanks for the update!
.golangci.yml
Outdated
|
||
issues: | ||
# Only check issues in the new code. | ||
new-from-rev: HEAD~1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't this cause to only look at code in the very last commit? Shouldn't we pin this to a fixed version and update every once in a while?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah was experimenting sth...basically I was trying to use new-from-rev: master
- the idea is to only lint the diff between the current PR and the master, but couldn't get it to work due to this error,
level=warning msg="[runner] Can't process result by diff processor: can't prepare diff by revgrep: could not read git repo: error executing \"git diff --color=never --no-ext-diff --default-prefix --relative master --\": exit status 128: fatal: bad revision 'master'\n"
seems to be a revgrep.go
issue.
Changed to commit instead.
Oops, I just realized that all my comments should've been in #947... |
Can be rebased. Pushed the following tags:
|
906d381
to
236e975
Compare
Sync versions across repos.
Depends on