-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump buf to v1.66.0 and golang.org/x/net to v0.51.0 #83
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| GOLANGCI_LINT_VERSION=v2.10.1 | ||
| BUF_VERSION=v1.65.0 | ||
| BUF_VERSION=v1.66.0 | ||
| GO_VERSION=1.26.0 | ||
| GCI_PREFIX=github.com/hyp3rd/hypercache | ||
| PROTO_ENABLED=true | ||
| PROTO_ENABLED=false | ||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,7 +1,7 @@ | ||||
| include .project-settings.env | ||||
|
|
||||
| GOLANGCI_LINT_VERSION ?= v2.10.1 | ||||
| BUF_VERSION ?= v1.65.0 | ||||
| BUF_VERSION ?= v1.66.0 | ||||
|
||||
| BUF_VERSION ?= v1.66.0 |
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.
BUF_VERSIONis bumped here, but the CI workflows that source.project-settings.envonly readGO_VERSION/GOLANGCI_LINT_VERSIONand never consumeBUF_VERSION. As a result, this setting currently doesn't affect tooling versions in CI. Either plumbBUF_VERSIONinto the relevant workflow/Make targets or drop it to avoid a misleading configuration knob.