Skip to content

Commit 2794d90

Browse files
fix(deps): update all non-major dependencies
1 parent 011a9aa commit 2794d90

9 files changed

Lines changed: 190 additions & 44 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG BUILDIFIER_VERSION=v8.5.1
1818
# later layers can layer `uv tool install ruff ty pre-commit` on top of it.
1919
# Pinned tag bumped by Renovate's docker manager (matches the pattern used in
2020
# ~/.dotfiles/.devcontainer/Dockerfile).
21-
COPY --from=ghcr.io/astral-sh/uv:0.12.3 /uv /uvx /usr/local/bin/
21+
COPY --from=ghcr.io/astral-sh/uv:0.12.4 /uv /uvx /usr/local/bin/
2222

2323
# ruff: format + lint. Installed via `uv tool install` so the binary lives in
2424
# /usr/local/bin and `ruff` is on PATH for the pre-commit hooks and the VS Code
@@ -27,18 +27,18 @@ COPY --from=ghcr.io/astral-sh/uv:0.12.3 /uv /uvx /usr/local/bin/
2727
# /root (mode 700) and the vscode user could not follow the bin/ symlink.
2828
# Renovate's regex manager tracks RUFF_VERSION via the comment above the ARG.
2929
# renovate: datasource=pypi depName=ruff
30-
ARG RUFF_VERSION=0.16.2
30+
ARG RUFF_VERSION=0.16.3
3131
# ty: static type checker. Same `uv tool install` pattern as ruff so the
3232
# binary lands on PATH for CI, pre-commit, and the `astral-sh.ty` editor
3333
# extension. UV_TOOL_{BIN_DIR,DIR} are shared across all uv tool installs.
3434
# renovate: datasource=pypi depName=ty
35-
ARG TY_VERSION=0.0.69
35+
ARG TY_VERSION=0.0.71
3636
# pre-commit: the hook runner. Installed via `uv tool install` (not pip) so
3737
# we have a single Python package manager in the devcontainer; the binary
3838
# lands at /usr/local/bin/pre-commit, so post-create.sh and any contributor
3939
# shell can invoke it directly without a $HOME/.local/bin PATH dance.
4040
# renovate: datasource=pypi depName=pre-commit
41-
ARG PRE_COMMIT_VERSION=4.6.1
41+
ARG PRE_COMMIT_VERSION=4.6.2
4242
# UV_TOOL_DIR holds the per-tool venvs; UV_PYTHON_INSTALL_DIR is where uv
4343
# downloads its managed Python interpreters (both the pre-commit tool venv's
4444
# interpreter and the interactive `python3` installed below). Both must be

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"upgradePackages": false
2323
},
2424
"ghcr.io/devcontainers/features/go:1.3.4": {
25-
"version": "1.26.5"
25+
"version": "1.26.6"
2626
},
2727
// Python is NOT a devcontainer feature: that feature compiles CPython from source
2828
// (~2 min/build). The Dockerfile installs a prebuilt uv-managed interpreter instead

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- uses: astral-sh/ruff-action@278981a28ce3188b1e39527901f38254bf3aac89 # v4.1.0
158158
with:
159159
# renovate: datasource=pypi depName=ruff
160-
version: "0.16.2"
160+
version: "0.16.3"
161161
args: format --check
162162
- run: ruff check
163163

@@ -208,7 +208,7 @@ jobs:
208208
- name: ty check
209209
env:
210210
# renovate: datasource=pypi depName=ty
211-
TY_VERSION: "0.0.69"
211+
TY_VERSION: "0.0.71"
212212
run: uvx "ty@${TY_VERSION}" check
213213

214214
# Build and test runs once per supported target platform, on a runner whose host matches

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
name: Semgrep
4949
runs-on: ubuntu-latest
5050
container:
51-
image: semgrep/semgrep:1.172.0@sha256:65dcd4408adda7c183a6b4550cb1e9b19f7f627a6fbb7e0559bd466bedc44d7b
51+
image: semgrep/semgrep:1.173.0@sha256:67319956da3dcb58baf5b322899c15458e3963e7018a86aeeb5cd224e69cb77a
5252
permissions:
5353
contents: read
5454
steps:
@@ -170,7 +170,7 @@ jobs:
170170
format: sarif
171171
output: trivy.sarif
172172

173-
- uses: github/codeql-action/upload-sarif@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
173+
- uses: github/codeql-action/upload-sarif@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
174174
if: always()
175175
with:
176176
sarif_file: trivy.sarif

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
4242
go_sdk.download(
4343
goarch = "amd64",
4444
goos = "linux",
45-
version = "1.26.5",
45+
version = "1.26.6",
4646
)
4747
go_sdk.download(
4848
goarch = "arm64",
4949
goos = "linux",
50-
version = "1.26.5",
50+
version = "1.26.6",
5151
)
5252
go_sdk.download(
5353
goarch = "arm64",
5454
goos = "darwin",
55-
version = "1.26.5",
55+
version = "1.26.6",
5656
)
5757

5858
# Discover external Go deps from the workspace's go.work + per-module go.mod files.
@@ -64,7 +64,7 @@ go_deps.from_file(go_work = "//:go.work")
6464
use_repo(go_deps, "com_github_vbauerster_mpb_v8")
6565

6666
# ── Python ────────────────────────────────────────────────────────────────────────────────────────
67-
bazel_dep(name = "rules_python", version = "2.2.0")
67+
bazel_dep(name = "rules_python", version = "2.3.0")
6868

6969
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
7070
python.toolchain(

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
go 1.26.5
1+
go 1.26.6
22

33
use ./tools/network_infrastructure_maintenance

0 commit comments

Comments
 (0)