mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-16 22:27:34 +00:00
Some checks failed
Scorecard supply-chain security / Scorecard analysis (push) Failing after 1m20s
Post / images (amd64, addon-manager) (push) Failing after 5m39s
Post / coverage (push) Failing after 7m32s
Post / images (amd64, registration-operator) (push) Failing after 43s
Post / images (amd64, work) (push) Failing after 40s
Post / images (amd64, placement) (push) Failing after 8m15s
Post / images (arm64, addon-manager) (push) Failing after 40s
Post / images (arm64, registration) (push) Failing after 43s
Post / images (arm64, registration-operator) (push) Failing after 39s
Post / images (amd64, registration) (push) Failing after 5m26s
Post / images (arm64, work) (push) Failing after 38s
Post / images (arm64, placement) (push) Failing after 7m27s
Post / image manifest (addon-manager) (push) Has been skipped
Post / image manifest (placement) (push) Has been skipped
Post / image manifest (registration) (push) Has been skipped
Post / image manifest (registration-operator) (push) Has been skipped
Post / image manifest (work) (push) Has been skipped
Post / trigger clusteradm e2e (push) Has been skipped
Bumps [github.com/google/cel-go](https://github.com/google/cel-go) from 0.26.1 to 0.27.0. - [Release notes](https://github.com/google/cel-go/releases) - [Commits](https://github.com/google/cel-go/compare/v0.26.1...v0.27.0) --- updated-dependencies: - dependency-name: github.com/google/cel-go dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.1 KiB
Python
57 lines
1.1 KiB
Python
module(
|
|
name = "cel-spec",
|
|
)
|
|
|
|
bazel_dep(
|
|
name = "bazel_skylib",
|
|
version = "1.7.1",
|
|
)
|
|
bazel_dep(
|
|
name = "gazelle",
|
|
version = "0.39.1",
|
|
repo_name = "bazel_gazelle",
|
|
)
|
|
bazel_dep(
|
|
name = "protobuf",
|
|
version = "27.1",
|
|
repo_name = "com_google_protobuf",
|
|
)
|
|
bazel_dep(
|
|
name = "rules_cc",
|
|
version = "0.0.17",
|
|
)
|
|
bazel_dep(
|
|
name = "rules_go",
|
|
version = "0.53.0",
|
|
repo_name = "io_bazel_rules_go",
|
|
)
|
|
bazel_dep(
|
|
name = "rules_java",
|
|
version = "7.6.5",
|
|
)
|
|
bazel_dep(
|
|
name = "rules_proto",
|
|
version = "7.0.2",
|
|
)
|
|
bazel_dep(
|
|
name = "rules_python",
|
|
version = "0.35.0",
|
|
)
|
|
|
|
### PYTHON ###
|
|
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
|
|
python.toolchain(
|
|
ignore_root_user_error = True,
|
|
python_version = "3.11",
|
|
)
|
|
|
|
go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
|
|
go_sdk.download(version = "1.23.0")
|
|
|
|
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
|
|
go_deps.from_file(go_mod = "//:go.mod")
|
|
use_repo(
|
|
go_deps,
|
|
"org_golang_google_protobuf",
|
|
)
|