Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ go_deps.module_override(
oci_pull = use_repo_rule("//oci:defs.bzl", "oci_pull")

oci_pull(
name = "ubuntu_focal",
# Latest at "focal" tag
digest = "sha256:9d6a8699fb5c9c39cf08a0871bd6219f0400981c570894cd8cbea30d3424a31f",
registry = "ghcr.io",
repository = "datadog/rules_oci/ubuntu",
name = "ubuntu_noble",
# "noble" tag as of 2024-12-30
digest = "sha256:80dd3c3b9c6cecb9f1667e9290b3bc61b78c2678c02cbdae5f0fea92cc6734ab",
registry = "mirror.gcr.io",
repository = "library/ubuntu",
)

register_toolchains(
Expand Down
2 changes: 1 addition & 1 deletion tests/go-multiarch-image/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ go_multiarch_image(
"amd64",
"arm64",
],
base = "@ubuntu_focal//image",
base = "@ubuntu_noble//image",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)
Expand Down
Loading