From 88ad2236bf1215f7dc8e42c4e9e6e3c154b19a18 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 16:59:08 +0000 Subject: [PATCH] build(deps): update uv to v0.9.18 --- .github/workflows/ci.yml | 2 +- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32afdae2..2d5173a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.17" + version: "0.9.18" - name: Install dependencies run: uv sync --locked - name: Run ruff check diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 05bb7b5f..573d996b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,7 +40,7 @@ repos: - mdformat-mkdocs==5.1.1 - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.9.17 + rev: 0.9.18 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 2edd6a37..e3482967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later FROM python:3.13.11-alpine3.22 AS build -COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.18 /uv /uvx /bin/ # dependencies for building Python packages RUN apk add --no-cache build-base \