Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:

with:
# the bazel-target depends on your repo specific docs_targets configuration (e.g. "suffix")
bazel-target: "--lockfile_mode=error //:docs -- --github_user=${{ github.repository_owner }} --github_repo=${{ github.event.repository.name }}"
bazel-target: "--lockfile_mode=update //:docs -- --github_user=${{ github.repository_owner }} --github_repo=${{ github.event.repository.name }}"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not fixing the issue.

retention-days: 3
12 changes: 6 additions & 6 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module(
version = "0.1.0",
)

bazel_dep(name = "rules_python", version = "2.0.1")
bazel_dep(name = "rules_python", version = "2.0.2")
single_version_override(
module_name = "rules_python",
version = "1.5.4",
Expand All @@ -42,13 +42,13 @@ http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "ht
# *******************************************************************************
# Constraint values for specifying platforms and toolchains
# *******************************************************************************
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "score_bazel_platforms", version = "0.1.1")

# *******************************************************************************
# C++ Rules for Bazel
# *******************************************************************************
bazel_dep(name = "rules_cc", version = "0.2.16")
bazel_dep(name = "rules_cc", version = "0.2.18")

# *******************************************************************************
# Set dependency to Bazel C/C++ Toolchain repository
Expand Down Expand Up @@ -132,7 +132,7 @@ use_repo(
# Intended to be replaced with score_communication transporting a size limited
# FlatBuffers in the future
# *******************************************************************************
bazel_dep(name = "grpc", version = "1.76.0.bcr.1")
bazel_dep(name = "grpc", version = "1.81.0-pre1")

# Patch grpc and bundled abseil-cpp to not link -lpthread on QNX (pthread is built into libc on QNX)
archive_override(
Expand Down Expand Up @@ -173,7 +173,7 @@ single_version_override(
)

# FlatBuffers
bazel_dep(name = "flatbuffers", version = "25.2.10")
bazel_dep(name = "flatbuffers", version = "25.12.19")

# *******************************************************************************
# OpenSSL
Expand Down Expand Up @@ -220,7 +220,7 @@ filegroup(
# tooling
bazel_dep(name = "score_tooling", version = "1.1.2")
bazel_dep(name = "aspect_rules_lint", version = "1.5.3")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2")
bazel_dep(name = "buildifier_prebuilt", version = "8.5.1.2")

#docs-as-code
bazel_dep(name = "score_docs_as_code", version = "2.2.0")
Expand Down
Loading
Loading