Skip to content

Commit

Permalink
Update bazelisk to v1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bduffany committed Jan 6, 2025
1 parent 5ff7983 commit 9b3f35e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
24 changes: 12 additions & 12 deletions deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ def install_go_mod_dependencies(workspace_name = "buildbuddy"):
name = "com_github_bazelbuild_bazelisk",
build_file_generation = "on",
importpath = "github.com/bazelbuild/bazelisk",
sum = "h1:TOh9touXYcKKiZqE+Dj4XD/FHrzsqmu9iDvPTsW9jIc=",
version = "v1.19.0",
sum = "h1:qVPSlr31TbH9/wwZo3ciHmrw2zP06XPSGyZIlojrAOc=",
version = "v1.21.0",
)
go_repository(
name = "com_github_bazelbuild_buildtools",
Expand Down Expand Up @@ -2542,8 +2542,8 @@ def install_go_mod_dependencies(workspace_name = "buildbuddy"):
go_repository(
name = "com_github_hashicorp_go_version",
importpath = "github.com/hashicorp/go-version",
sum = "h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek=",
version = "v1.6.0",
sum = "h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY=",
version = "v1.7.0",
)
go_repository(
name = "com_github_hashicorp_golang_lru",
Expand Down Expand Up @@ -6519,26 +6519,26 @@ def install_static_dependencies(workspace_name = "buildbuddy"):
)
http_file(
name = "com_github_bazelbuild_bazelisk-bazelisk-darwin-amd64",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-darwin-amd64"],
sha256 = "f2ba5f721a995b54bab68c6b76a340719888aa740310e634771086b6d1528ecd",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.21.0/bazelisk-darwin-amd64"],
sha256 = "efa8532f98466fbccda46a36ca86e712d844b055102a47587030dd22bf6bd4b4",
executable = True,
)
http_file(
name = "com_github_bazelbuild_bazelisk-bazelisk-darwin-arm64",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-darwin-arm64"],
sha256 = "69fa21cd2ccffc2f0970c21aa3615484ba89e3553ecce1233a9d8ad9570d170e",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.21.0/bazelisk-darwin-arm64"],
sha256 = "17529faeed52219ee170d59bd820c401f1645a95f95ee4ac3ebd06972edfb6ff",
executable = True,
)
http_file(
name = "com_github_bazelbuild_bazelisk-bazelisk-linux-amd64",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64"],
sha256 = "d28b588ac0916abd6bf02defb5433f6eddf7cba35ffa808eabb65a44aab226f7",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.21.0/bazelisk-linux-amd64"],
sha256 = "655a5c675dacf3b7ef4970688b6a54598aa30cbaa0b9e717cd1412c1ef9ec5a7",
executable = True,
)
http_file(
name = "com_github_bazelbuild_bazelisk-bazelisk-linux-arm64",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-arm64"],
sha256 = "861a16ba9979613e70bd3d2f9d9ab5e3b59fe79471c5753acdc9c431ab6c9d94",
urls = ["https://github.com/bazelbuild/bazelisk/releases/download/v1.21.0/bazelisk-linux-arm64"],
sha256 = "ff793b461968e30d9f954c080f4acaa557edbdeab1ce276c02e4929b767ead66",
executable = True,
)
http_file(
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ require (
github.com/aws/smithy-go v1.13.5
github.com/awslabs/soci-snapshotter v0.1.0
github.com/bazelbuild/bazel-gazelle v0.39.0
github.com/bazelbuild/bazelisk v1.19.0
github.com/bazelbuild/bazelisk v1.21.0
github.com/bazelbuild/buildtools v0.0.0-20240827154017-dd10159baa91
github.com/bazelbuild/rules_go v0.50.1
github.com/bazelbuild/rules_webtesting v0.0.0-20210910170740-6b2ef24cfe95
Expand Down Expand Up @@ -290,7 +290,7 @@ require (
github.com/hashicorp/go-msgpack/v2 v2.1.2 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
Expand Down
7 changes: 4 additions & 3 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8=
github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA=
github.com/bazelbuild/bazel-gazelle v0.39.0 h1:5RCU7g9tWPOa1ySkQgpPRDhiXfG5+38W4acSuKSQyrs=
github.com/bazelbuild/bazel-gazelle v0.39.0/go.mod h1:3vVgNuO49N8bghRC63OY+MHWalzXyoI9nH6XeEjf1lQ=
github.com/bazelbuild/bazelisk v1.19.0 h1:TOh9touXYcKKiZqE+Dj4XD/FHrzsqmu9iDvPTsW9jIc=
github.com/bazelbuild/bazelisk v1.19.0/go.mod h1:EwrQdJpNWr17zu6UWVk49YBNZ9MkIgTkOUwfTIeaRnc=
github.com/bazelbuild/bazelisk v1.21.0 h1:qVPSlr31TbH9/wwZo3ciHmrw2zP06XPSGyZIlojrAOc=
github.com/bazelbuild/bazelisk v1.21.0/go.mod h1:QDwwOnFE/mlQsmqo9XOzakiPbpBUlH5/eq4NcGB51q4=
github.com/bazelbuild/buildtools v0.0.0-20240827154017-dd10159baa91 h1:/wpuwyWvp46gZfQCmbR+4SI5ne7IjRUM5lsXTzpAeWM=
github.com/bazelbuild/buildtools v0.0.0-20240827154017-dd10159baa91/go.mod h1:PLNUetjLa77TCCziPsz0EI8a6CUxgC+1jgmWv0H25tg=
github.com/bazelbuild/rules_go v0.50.1 h1:/BUvuaB8MEiUA2oLPPCGtuw5V+doAYyiGTFyoSWlkrw=
Expand Down Expand Up @@ -994,8 +994,9 @@ github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/b
github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
github.com/hashicorp/go-uuid v1.0.2 h1:cfejS+Tpcp13yd5nYHWDI6qVCny6wyX2Mt5SGur2IGE=
github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek=
github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY=
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
Expand Down

0 comments on commit 9b3f35e

Please sign in to comment.