Skip to content

Commit 8207182

Browse files
chore(deps): update dependency rules_shell to v0.6.0 (#159)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_shell](https://redirect.github.com/bazelbuild/rules_shell) | bazel_dep | minor | `0.5.1` -> `0.6.0` | --- ### Release Notes <details> <summary>bazelbuild/rules_shell (rules_shell)</summary> ### [`v0.6.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.6.0) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.6.0") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "fce2a7a974aa70e9367068122e19c39a6a27a5aca30698bcf9030beb529612b6", strip_prefix = "rules_shell-0.6.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.6.0/rules_shell-v0.6.0.tar.gz", ) load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Update runfiles library label in setup instructions by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_shell/pull/35](https://redirect.github.com/bazelbuild/rules_shell/pull/35)5 - Use launcher wrapper to initialize runfiles by [@&#8203;mering](https://redirect.github.com/mering) in [https://github.com/bazelbuild/rules_shell/pull/38](https://redirect.github.com/bazelbuild/rules_shell/pull/38)8 #### New Contributors - [@&#8203;mering](https://redirect.github.com/mering) made their first contribution in [https://github.com/bazelbuild/rules_shell/pull/38](https://redirect.github.com/bazelbuild/rules_shell/pull/38)8 **Full Changelog**: https://github.com/bazelbuild/rules\_shell/compare/v0.5.1...v0.6.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4wLjAiLCJ1cGRhdGVkSW5WZXIiOiI0MS4wLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com>
1 parent 8c26d8a commit 8207182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/custom_swift_proto_compiler/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ local_path_override(
1414
bazel_dep(name = "rules_swift_package_manager", version = "1.4.0")
1515
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1616
bazel_dep(name = "bazel_skylib", version = "1.8.1")
17-
bazel_dep(name = "rules_shell", version = "0.5.1")
17+
bazel_dep(name = "rules_shell", version = "0.6.0")
1818

1919
# The apple_support bazel_dep must come before the rules_cc.
2020
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

0 commit comments

Comments
 (0)