Skip to content

Commit 65e6eb3

Browse files
authored
Fixes WORKSPACE format (#6740)
## Motivation for features / changes The current WORKSPACE file in the repo doesn't correspond to the `buildifier` result. ## Technical description of changes - Simply applied the result of `buildifier WORKSPACE`. Confirmed that the output is the same for both internal and external (`npx buildifier` v5.1.0) buildifier
1 parent 78b36f8 commit 65e6eb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ http_archive(
1515
load("@bazel_skylib//lib:versions.bzl", "versions")
1616

1717
versions.check(
18-
# Keep this version in sync with:
19-
# * The BAZEL environment variable defined in .github/workflows/ci.yml, which is used for CI and nightly builds.
20-
minimum_bazel_version = "4.2.2",
2118
# Preemptively assume the next Bazel major version will break us, since historically they do,
2219
# and provide a clean error message in that case. Since the maximum version is inclusive rather
2320
# than exclusive, we set it to the 999th patch release of the current major version.
2421
maximum_bazel_version = "6.999.0",
22+
# Keep this version in sync with:
23+
# * The BAZEL environment variable defined in .github/workflows/ci.yml, which is used for CI and nightly builds.
24+
minimum_bazel_version = "4.2.2",
2525
)
2626

2727
http_archive(

0 commit comments

Comments
 (0)