From 50c7208f4ffb268b3ccaafb53689bcf9850b52a3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 22:41:10 +0000 Subject: [PATCH] chore(deps): update all dependencies --- .github/workflows/ci.yml | 8 ++++---- .pre-commit-config.yaml | 8 ++++---- Dockerfile | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 676bc98..08162b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,11 +22,11 @@ jobs: uses: actions/checkout@v7 - name: Set up python id: setup-python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version-file: ".python-version" - name: Set up uv - uses: astral-sh/setup-uv@v8.2.0 + uses: astral-sh/setup-uv@v8.3.2 with: enable-cache: true version-file: "pyproject.toml" @@ -57,11 +57,11 @@ jobs: uses: actions/checkout@v7 - name: Set up python id: setup-python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version-file: ".python-version" - name: Set up uv - uses: astral-sh/setup-uv@v8.2.0 + uses: astral-sh/setup-uv@v8.3.2 with: enable-cache: true version-file: "pyproject.toml" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3268a03..5b36581 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: # ruff - linting + formatting - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.20 + rev: v0.15.22 hooks: - id: ruff name: ruff @@ -25,14 +25,14 @@ repos: # mypy - lint-like type checking - repo: https://github.com/pre-commit/mirrors-mypy - rev: v2.1.0 + rev: v2.3.0 hooks: - id: mypy name: mypy # ty - lint-like type checking (Astral, preview) - repo: https://github.com/astral-sh/ty-pre-commit - rev: v0.0.55 + rev: v0.0.61 hooks: - id: ty name: ty @@ -59,7 +59,7 @@ repos: # oxfmt - formatting YAML, JSON, Markdown, ... - repo: https://github.com/oxc-project/mirrors-oxfmt - rev: v0.56.0 + rev: v0.59.0 hooks: - id: oxfmt types_or: [yaml, markdown, json] diff --git a/Dockerfile b/Dockerfile index 9c8c568..be07640 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" FROM python-base AS builder-base -COPY --from=ghcr.io/astral-sh/uv:0.11.25 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.30 /uv /uvx /bin/ WORKDIR $WORKDIR_PATH