Skip to content

0.2.3

Compare
Choose a tag to compare
@github-actions github-actions released this 26 Oct 00:48
· 19 commits to main since this release

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.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 = "7b85f3c9a679f1f72e2564b1dcb414f630d3696ddd84dd90c9ce2e5b0ff7a1fe",
    url = "https://github.com/aignas/rules_shellcheck/releases/download/0.2.3/rules_shellcheck-0.2.3.tar.gz",
)

load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")

shellcheck_dependencies()

Full Changelog: 0.2.2...0.2.3