From f17d37f99d57fe64b8fecb7ae0533e27619c7ed0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 08:26:12 +0800 Subject: [PATCH] chore(deps): update dependency rules_cuda to v0.2.3 (#824) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_cuda](https://togithub.com/bazel-contrib/rules_cuda) | http_archive | patch | `v0.2.2` -> `v0.2.3` | --- ### Release Notes
bazel-contrib/rules_cuda (rules_cuda) ### [`v0.2.3`](https://togithub.com/bazel-contrib/rules_cuda/releases/tag/v0.2.3) [Compare Source](https://togithub.com/bazel-contrib/rules_cuda/compare/v0.2.2...v0.2.3) #### `WORKSPACE` code ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_cuda", sha256 = "c92b334d769a07cd991b7675b2f6076b8b95cd3b28b14268a2f379f8baae58e0", strip_prefix = "rules_cuda-v0.2.3", urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.2.3/rules_cuda-v0.2.3.tar.gz"], ) load("@​rules_cuda//cuda:repositories.bzl", "register_detected_cuda_toolchains", "rules_cuda_dependencies") rules_cuda_dependencies() register_detected_cuda_toolchains() ``` #### What's Changed - Make it clear that "integrity" field expects SRI by [@​zifeitong](https://togithub.com/zifeitong) in [https://github.com/bazel-contrib/rules_cuda/pull/259](https://togithub.com/bazel-contrib/rules_cuda/pull/259) - Fix strip_prefix when publishing to BCR by [@​jsharpe](https://togithub.com/jsharpe) in [https://github.com/bazel-contrib/rules_cuda/pull/269](https://togithub.com/bazel-contrib/rules_cuda/pull/269) #### New Contributors - [@​zifeitong](https://togithub.com/zifeitong) made their first contribution in [https://github.com/bazel-contrib/rules_cuda/pull/259](https://togithub.com/bazel-contrib/rules_cuda/pull/259) **Full Changelog**: https://github.com/bazel-contrib/rules_cuda/compare/v0.2.2...v0.2.3
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/secretflow/spu). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- bazel/repositories.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index fb4e6700..403e4c05 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -69,9 +69,9 @@ def _rules_proto_grpc(): def _rules_cuda(): http_archive( name = "rules_cuda", - sha256 = "b066750579f33e93e9dc55b8ee2067b525d863c1ddcf09b47a6332c39f0701fb", - strip_prefix = "rules_cuda-v0.2.2", - urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.2.2/rules_cuda-v0.2.2.tar.gz"], + sha256 = "c92b334d769a07cd991b7675b2f6076b8b95cd3b28b14268a2f379f8baae58e0", + strip_prefix = "rules_cuda-v0.2.3", + urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.2.3/rules_cuda-v0.2.3.tar.gz"], ) def _bazel_platform():