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

fix: integrity hashes are now sha256 since #854 #855

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
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
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