Skip to content

0.6.2

Latest

Choose a tag to compare

@github-actions github-actions released this 21 Mar 17:59
· 1 commit to main since this release

bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "rules_shellcheck", version = "0.6.2")

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

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

shellcheck_dependencies()

What's Changed

Full Changelog: 0.6.1...0.6.2