From 0987dd63e208066913a90ca117b6aed522e57d5c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 16:44:02 +0000 Subject: [PATCH] build(deps): update uv --- .github/workflows/ci.yml | 12 ++++++------ .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a500eb5..223c826b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,11 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - - uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1 + - uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.29" + version: "0.10.0" - name: Install dependencies # docs dependencies required to type check scripts in docs/ run: uv sync --locked --group docs @@ -69,11 +69,11 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - - uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1 + - uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.29" + version: "0.10.0" - name: Install dependencies run: uv sync --locked --no-dev - name: Configure environment file @@ -206,11 +206,11 @@ jobs: # fetch the full git history to be able to determine creation dates for pages # see: https://github.com/timvink/mkdocs-git-revision-date-localized-plugin?tab=readme-ov-file#note-when-using-build-environments fetch-depth: 0 - - uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1 + - uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.29" + version: "0.10.0" - name: Install dependencies run: | uv sync --locked --no-dev --group docs diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index db9317bb..a3e1aa0e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -34,7 +34,7 @@ repos: - id: validate-pyproject - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.9.29 + rev: 0.10.0 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 6da9a753..613800ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.13.11-alpine3.22 AS build -COPY --from=ghcr.io/astral-sh/uv:0.9.29 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.10.0 /uv /uvx /bin/ # dependencies for building Python packages RUN apk add --no-cache build-base \