github-actions
released this
10 Oct 20:12
·
10 commits
to master
since this release
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_detekt", version = "0.8.1.2")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_detekt",
sha256 = "a5ae68f2487568d2c4145a8fc45da096edaaaed46487fb3d108ffe24b31d99da",
strip_prefix = "bazel_rules_detekt-0.8.1.2",
url = "https://github.com/buildfoundation/bazel_rules_detekt/releases/download/v0.8.1.2/bazel_rules_detekt-v0.8.1.2.tar.gz",
)
What's Changed
- Update MODULE.bazel version to 0.8.1.1 by @Bencodes in #167
- Update metadata.template.json to use Artem's working email by @Bencodes in #166
- Bump bazel-contrib/.github from 4 to 5 by @dependabot in #168
- Fix typo in toolchains.bzl by @Bencodes in #169
Full Changelog: v0.8.1.1...v0.8.1.2