Skip to content
Draft
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/bvt-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: "3.14"

- name: Cache pre-commit envs
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
args: ["--maxkb=1024"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.18
rev: v0.15.21
hooks:
- id: ruff-format

Expand All @@ -41,7 +41,7 @@ repos:
- id: meson-format
name: meson format
language: python
additional_dependencies: ["meson==1.11.1"]
additional_dependencies: ["meson==1.11.2"]
entry: meson
args: ["format", "--check-only", "--recursive", "meson.build"]
pass_filenames: false
Expand All @@ -50,7 +50,7 @@ repos:
- id: clang-format
name: clang-format
language: python
additional_dependencies: ["clang-format==22.1.5"]
additional_dependencies: ["clang-format==22.1.8"]
entry: python3 tools/format_cpp.py
pass_filenames: false
files: '\.(h|ixx|cpp|md)$'
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ module(
)

bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.19")
bazel_dep(name = "rules_cc", version = "0.2.22")
bazel_dep(name = "bazel_skylib", version = "1.9.0")

bazel_dep(name = "googletest", version = "1.17.0.bcr.2", dev_dependency = True)
bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True)
bazel_dep(name = "fmt", version = "12.1.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.0.3", dev_dependency = True)
bazel_dep(name = "fmt", version = "12.2.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.2.0", dev_dependency = True)

python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)
python.toolchain(
Expand Down
Loading
Loading