From 4df33fb74cb4648f09cf8e329275802e47be24d8 Mon Sep 17 00:00:00 2001 From: James Wainwright Date: Tue, 17 Dec 2024 11:20:08 +0000 Subject: [PATCH] [bazel] Correct `bazel_skylib` version in `MODULE.bazel` Due to semantic version resolution, we're actually getting `bazel_skylib` version 1.7.1 due to a dependency asking for it. Update the version listed in `MODULE.bazel` to match so the warning is supressed. Signed-off-by: James Wainwright --- MODULE.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MODULE.bazel b/MODULE.bazel index ad284b70a4ec6..0c5821291518e 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -4,7 +4,7 @@ module(name = "lowrisc_opentitan") -bazel_dep(name = "bazel_skylib", version = "1.5.0") +bazel_dep(name = "bazel_skylib", version = "1.7.1") include("//third_party/rust:rust.MODULE.bazel")