Skip to content

Commit

Permalink
fix: integrity hashes are now sha256 since #854 (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored May 23, 2024
1 parent 4ad02b7 commit 22c33df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/private/copy_directory_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _copy_directory_platform_repo_impl(rctx):
url = url,
output = "copy_directory.exe" if is_windows else "copy_directory",
executable = True,
integrity = RELEASED_BINARY_INTEGRITY[release_file],
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
)
build_content = """# @generated by @aspect_bazel_lib//lib/private:copy_directory_toolchain.bzl
load("@aspect_bazel_lib//lib/private:copy_directory_toolchain.bzl", "copy_directory_toolchain")
Expand Down
2 changes: 1 addition & 1 deletion lib/private/copy_to_directory_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _copy_to_directory_platform_repo_impl(rctx):
url = url,
output = "copy_to_directory.exe" if is_windows else "copy_to_directory",
executable = True,
integrity = RELEASED_BINARY_INTEGRITY[release_file],
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
)
build_content = """# @generated by @aspect_bazel_lib//lib/private:copy_to_directory_toolchain.bzl
load("@aspect_bazel_lib//lib/private:copy_to_directory_toolchain.bzl", "copy_to_directory_toolchain")
Expand Down
2 changes: 1 addition & 1 deletion lib/private/expand_template_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _expand_template_platform_repo_impl(rctx):
url = url,
output = "expand_template.exe" if is_windows else "expand_template",
executable = True,
integrity = RELEASED_BINARY_INTEGRITY[release_file],
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
)
build_content = """# @generated by @aspect_bazel_lib//lib/private:expand_template_toolchain.bzl
load("@aspect_bazel_lib//lib/private:expand_template_toolchain.bzl", "expand_template_toolchain")
Expand Down

0 comments on commit 22c33df

Please sign in to comment.