0.2.4
Using Bzlmod with Bazel 6
NOTE: bzlmod support is still beta. APIs subject to change.
Add to your MODULE.bazel
file:
bazel_dep(name = "rules_shellcheck", version = "0.2.4")
Legacy: using WORKSPACE
Paste this snippet into your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_shellcheck",
sha256 = "2ff1826b2e8e0a343f79267c1ced5f37bafae20de49d4897f56366a23139f4b8",
url = "https://github.com/aignas/rules_shellcheck/releases/download/0.2.4/rules_shellcheck-0.2.4.tar.gz",
)
load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")
shellcheck_dependencies()
What's Changed
- chore: dependabot for GH actions by @aignas in #25
- build(deps): bump actions/checkout from 2 to 4 by @dependabot in #26
- chore: upgrade pre-commit buildifier by @aignas in #27
- chore: prepare 0.2.4 release by @aignas in #28
New Contributors
- @dependabot made their first contribution in #26
Full Changelog: 0.2.3...0.2.4