Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down