From f8c9d15c58e7d71949759aed7effa628c5222ade Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:32:36 +0000 Subject: [PATCH] chore(deps): update uv --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deploy.yml | 4 ++-- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1fdc320..a55f42ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,11 +53,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@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.11.4" + version: "0.11.7" - name: Install dependencies run: | uv sync --locked diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2ceb9963..dfcaeccd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,11 +31,11 @@ jobs: git config user.name github-actions[bot] git config user.email 41898282+github-actions[bot]@users.noreply.github.com - name: Install uv - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.11.4" + version: "0.11.7" - name: Install dependencies run: uv sync --locked --no-dev # see: https://squidfunk.github.io/mkdocs-material/publishing-your-site/#with-github-actions diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 334a2936..fa6f7d72 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,7 +48,7 @@ repos: - id: markdownlint-cli2 - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.11.4 + rev: 0.11.7 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 10f65c02..e8d02d5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM squidfunk/mkdocs-material:9.7.6 -COPY --from=ghcr.io/astral-sh/uv:0.11.4 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.7 /uv /uvx /bin/ RUN --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \