Skip to content

0.2.4

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Oct 06:58
· 12 commits to main since this release
f1f7093

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

Full Changelog: 0.2.3...0.2.4