From a10ce225773334f994b0830ef63f8122337d707d Mon Sep 17 00:00:00 2001 From: Nikita Shulga <2453524+malfet@users.noreply.github.com> Date: Tue, 19 Nov 2024 03:40:53 +0000 Subject: [PATCH] [BE] Update bazelisk and bazel versions (#140992) bazelisk from 1.16 to 1.23 bazel from 6.1.1 to 6.5.0 Pull Request resolved: https://github.com/pytorch/pytorch/pull/140992 Approved by: https://github.com/izaitsevfb, https://github.com/huydhn --- .bazelversion | 2 +- .ci/pytorch/common_utils.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bazelversion b/.bazelversion index f3b5af39e430..f22d756da39d 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -6.1.1 +6.5.0 diff --git a/.ci/pytorch/common_utils.sh b/.ci/pytorch/common_utils.sh index 2f9b24176a50..643fca3e4080 100644 --- a/.ci/pytorch/common_utils.sh +++ b/.ci/pytorch/common_utils.sh @@ -105,9 +105,9 @@ function get_bazel() { # version of Bazelisk to fetch the platform specific version of # Bazel to use from .bazelversion. retry curl --location --output tools/bazel \ - https://raw.githubusercontent.com/bazelbuild/bazelisk/v1.16.0/bazelisk.py + https://raw.githubusercontent.com/bazelbuild/bazelisk/v1.23.0/bazelisk.py shasum --algorithm=1 --check \ - <(echo 'd4369c3d293814d3188019c9f7527a948972d9f8 tools/bazel') + <(echo '01df9cf7f08dd80d83979ed0d0666a99349ae93c tools/bazel') chmod u+x tools/bazel }