Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency rules_shell to v0.4.0 (#442)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_shell](https://redirect.github.com/bazelbuild/rules_shell) | bazel_dep | minor | `0.3.0` -> `0.4.0` | --- ### Release Notes <details> <summary>bazelbuild/rules_shell (rules_shell)</summary> ### [`v0.4.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.4.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.4.0") ``` ##### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "3e114424a5c7e4fd43e0133cc6ecdfe54e45ae8affa14fadd839f29901424043", strip_prefix = "rules_shell-0.4.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.0/rules_shell-v0.4.0.tar.gz", ) load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` ##### What's Changed - sh_config: Add BAZEL_SH by [@​meteorcloudy](https://redirect.github.com/meteorcloudy) in [https://github.com/bazelbuild/rules_shell/pull/18](https://redirect.github.com/bazelbuild/rules_shell/pull/18) - sh_configure: change local = True to configure = True by [@​meteorcloudy](https://redirect.github.com/meteorcloudy) in [https://github.com/bazelbuild/rules_shell/pull/19](https://redirect.github.com/bazelbuild/rules_shell/pull/19) - Fix printing of toolchain type label in error message by [@​fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_shell/pull/20](https://redirect.github.com/bazelbuild/rules_shell/pull/20) **Full Changelog**: bazelbuild/rules_shell@v0.3.0...v0.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled because a matching PR was automerged previously. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/rules_bazel_integration_test). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information