0.6.3
bzlmod
Add to your MODULE.bazel file:
bazel_dep(name = "rules_shellcheck", version = "0.6.3")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 = "940d213223d7aa72af87faad27598f59cb142c3eef79b88b1bbfe12467ebd74c",
url = "https://github.com/aignas/rules_shellcheck/releases/download/0.6.3/rules_shellcheck-0.6.3.tar.gz",
)
load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")
shellcheck_dependencies()What's Changed
- Update shellcheck_aspect to use rules_shell providers by @UebelAndre in #58
- Add attestation to releases by @UebelAndre in #64
- Add path-mapping support by @UebelAndre in #63
Full Changelog: 0.6.2...0.6.3