Skip to content

0.5.1

Choose a tag to compare

@github-actions github-actions released this 05 Mar 15:14
· 15 commits to main since this release
71ed42c

bzlmod

Add to your MODULE.bazel file:

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

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

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

shellcheck_dependencies()

What's Changed

New Contributors

Full Changelog: 0.4.0...0.5.1