Skip to content

Commit 22c33df

Browse files
authored
fix: integrity hashes are now sha256 since #854 (#855)
1 parent 4ad02b7 commit 22c33df

3 files changed

+3
-3
lines changed

lib/private/copy_directory_toolchain.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _copy_directory_platform_repo_impl(rctx):
163163
url = url,
164164
output = "copy_directory.exe" if is_windows else "copy_directory",
165165
executable = True,
166-
integrity = RELEASED_BINARY_INTEGRITY[release_file],
166+
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
167167
)
168168
build_content = """# @generated by @aspect_bazel_lib//lib/private:copy_directory_toolchain.bzl
169169
load("@aspect_bazel_lib//lib/private:copy_directory_toolchain.bzl", "copy_directory_toolchain")

lib/private/copy_to_directory_toolchain.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _copy_to_directory_platform_repo_impl(rctx):
163163
url = url,
164164
output = "copy_to_directory.exe" if is_windows else "copy_to_directory",
165165
executable = True,
166-
integrity = RELEASED_BINARY_INTEGRITY[release_file],
166+
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
167167
)
168168
build_content = """# @generated by @aspect_bazel_lib//lib/private:copy_to_directory_toolchain.bzl
169169
load("@aspect_bazel_lib//lib/private:copy_to_directory_toolchain.bzl", "copy_to_directory_toolchain")

lib/private/expand_template_toolchain.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _expand_template_platform_repo_impl(rctx):
163163
url = url,
164164
output = "expand_template.exe" if is_windows else "expand_template",
165165
executable = True,
166-
integrity = RELEASED_BINARY_INTEGRITY[release_file],
166+
sha256 = RELEASED_BINARY_INTEGRITY[release_file],
167167
)
168168
build_content = """# @generated by @aspect_bazel_lib//lib/private:expand_template_toolchain.bzl
169169
load("@aspect_bazel_lib//lib/private:expand_template_toolchain.bzl", "expand_template_toolchain")

0 commit comments

Comments
 (0)