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

[workspace] Upgrade buildifier to latest release 6.0.1 #18763

Merged
Merged
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
6 changes: 3 additions & 3 deletions tools/workspace/buildifier/repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ def _impl(repository_ctx):
# Enumerate the possible binaries. Note that the buildifier binaries are
# fully statically linked, so the particular distribution doesn't matter,
# only the kernel.
version = "5.1.0"
version = "6.0.1"
darwin_urls = [
x.format(version = version, filename = "buildifier-darwin-amd64")
for x in repository_ctx.attr.mirrors.get("buildifier")
]
darwin_sha256 = "c9378d9f4293fc38ec54a08fbc74e7a9d28914dae6891334401e59f38f6e65dc" # noqa
darwin_sha256 = "f134ec0a16b5da6f006a4e65ec1ec6044efd3b149a85fae913db57d1be0fbc70" # noqa
linux_urls = [
x.format(version = version, filename = "buildifier-linux-amd64")
for x in repository_ctx.attr.mirrors.get("buildifier")
]
linux_sha256 = "52bf6b102cb4f88464e197caac06d69793fa2b05f5ad50a7e7bf6fbd656648a3" # noqa
linux_sha256 = "0e0f00a5053d697e1644d1b660dc1fb81b55838519751dd2f09eb1bd84c6b51c" # noqa

# Choose which binary to use.
os_result = determine_os(repository_ctx)
Expand Down