Skip to content
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

Adjust to newer CLI behavior #678

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
MAKEFLAGS += --no-print-directory
BIN := .tmp/bin
BUF_VERSION ?= v1.34.0
BUF_VERSION ?= v1.38.0
COPYRIGHT_YEARS := 2021-2023
GOLANGCI_LINT_VERSION ?= v1.58.0
LICENSE_IGNORE := --ignore /testdata/
Expand Down
4 changes: 2 additions & 2 deletions scripts/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ process_ref() {
# file since it's no longer relevant: each BSR cluster will sync itself from the base files and
# regenerate its own `buf.lock`.
pushd "${mod_tmp_path}" > /dev/null
buf mod update
buf dep update
buf build
rm buf.lock
rm -f buf.lock
popd > /dev/null

# process the prepared module: convert it to CAS from the tmp mod directory and put blob files in
Expand Down