diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a033ef6..cf16d75e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,11 @@ jobs: - uses: actions/checkout@v4.2.2 with: persist-credentials: false - - uses: astral-sh/setup-uv@v6.4.1 + - uses: astral-sh/setup-uv@v6.4.3 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.8.0" + version: "0.8.10" - name: Install dependencies run: uv sync --locked - name: Run ruff check diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7372d8c3..610b5cd2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,7 +40,7 @@ repos: - mdformat-mkdocs==4.3.0 - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.8.0 + rev: 0.8.10 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index d88ad7e4..ff479f25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later FROM python:3.13.5-alpine3.22 AS build -COPY --from=ghcr.io/astral-sh/uv:0.8.0 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.8.10 /uv /uvx /bin/ # dependencies for building Python packages RUN apk add --no-cache build-base \