From e1caa735dca213381dc6e81fe83398f1afdd7766 Mon Sep 17 00:00:00 2001 From: thesayyn Date: Wed, 28 Feb 2024 13:28:14 -0800 Subject: [PATCH] fix: upgrade bazel-lib --- .bcr/metadata.template.json | 13 ++++++++++++- .bcr/presubmit.yml | 2 +- MODULE.bazel | 2 +- distroless/dependencies.bzl | 6 +++--- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.bcr/metadata.template.json b/.bcr/metadata.template.json index 4633d6a..1365cd6 100644 --- a/.bcr/metadata.template.json +++ b/.bcr/metadata.template.json @@ -1,6 +1,17 @@ { "homepage": "https://github.com/GoogleContainerTools/rules_distroless", - "maintainers": [], + "maintainers": [ + { + "email": "appu@google.com", + "github": "loosebazooka", + "name": "Appu Goundan" + }, + { + "email": "sahin@aspect.dev", + "github": "thesayyn", + "name": "Şahin Yort" + } + ], "repository": ["github:GoogleContainerTools/rules_distroless"], "versions": [], "yanked_versions": {} diff --git a/.bcr/presubmit.yml b/.bcr/presubmit.yml index 34333e3..62669f7 100644 --- a/.bcr/presubmit.yml +++ b/.bcr/presubmit.yml @@ -1,7 +1,7 @@ bcr_test_module: module_path: "e2e/smoke" matrix: - platform: ["debian10", "macos", "ubuntu2004", "windows"] + platform: ["debian10", "macos", "ubuntu2004"] tasks: run_tests: name: "Run test module" diff --git a/MODULE.bazel b/MODULE.bazel index 98c11e9..d9d880f 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -7,7 +7,7 @@ module( ) bazel_dep(name = "bazel_skylib", version = "1.5.0") -bazel_dep(name = "aspect_bazel_lib", version = "2.0.3") +bazel_dep(name = "aspect_bazel_lib", version = "2.5.0") bazel_lib_toolchains = use_extension("@aspect_bazel_lib//lib:extensions.bzl", "toolchains") bazel_lib_toolchains.tar() diff --git a/distroless/dependencies.bzl b/distroless/dependencies.bzl index fc7ab3d..73a3780 100644 --- a/distroless/dependencies.bzl +++ b/distroless/dependencies.bzl @@ -30,7 +30,7 @@ def rules_distroless_dependencies(): http_archive( name = "aspect_bazel_lib", - sha256 = "c858cc637db5370f6fd752478d1153955b4b4cbec7ffe95eb4a47a48499a79c3", - strip_prefix = "bazel-lib-2.0.3", - url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.0.3/bazel-lib-v2.0.3.tar.gz", + sha256 = "f5ea76682b209cc0bd90d0f5a3b26d2f7a6a2885f0c5f615e72913f4805dbb0d", + strip_prefix = "bazel-lib-2.5.0", + url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.5.0/bazel-lib-v2.5.0.tar.gz", )