Skip to content

v0.6.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 04 May 18:22
· 234 commits to main since this release
0efc512

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_oci",
    sha256 = "856cdddbe32b8cc8e4a76bdffce1aa6f54642f6a7f54e4d06868af8874e80e9d",
    strip_prefix = "rules_oci-0.6.1",
    url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.6.1/rules_oci-v0.6.1.tar.gz",
)

load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")

rules_oci_dependencies()

load("@rules_oci//oci:repositories.bzl", "LATEST_CRANE_VERSION", "LATEST_ZOT_VERSION", "oci_register_toolchains")

oci_register_toolchains(
    name = "oci",
    crane_version = LATEST_CRANE_VERSION,
    # Uncommenting the zot toolchain will cause it to be used instead of crane for some tasks.
    # Note that it does not support docker-format images.
    # zot_version = LATEST_ZOT_VERSION,
)

What's Changed

  • chore: fix BCR release by using a patch on container-structure-test by @alexeagle in #218

Full Changelog: v0.6.0...v0.6.1