From 445901615e6e4e84aca47b2675583f56028d1687 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 2 Jul 2025 01:44:34 +0000 Subject: [PATCH] chore(deps): update uv --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/deploy.yml | 4 ++-- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f1093b..c7736ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,11 @@ jobs: - uses: actions/checkout@v4.2.2 with: persist-credentials: false - - uses: astral-sh/setup-uv@v6.1.0 + - uses: astral-sh/setup-uv@v6.3.1 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.7.10" + version: "0.7.18" - name: Install pre-commit run: | uv sync --locked --only-dev @@ -65,11 +65,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@v6.1.0 + - uses: astral-sh/setup-uv@v6.3.1 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.7.10" + version: "0.7.18" - name: Install dependencies run: | uv sync --locked diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7a0ffd5..478845c 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@v6.1.0 + uses: astral-sh/setup-uv@v6.3.1 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.7.10" + version: "0.7.18" - 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 733b407..1d37af7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -54,7 +54,7 @@ repos: - id: markdownlint-cli2 - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.7.10 + rev: 0.7.18 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 6f1f1af..7b51e9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM squidfunk/mkdocs-material:9.6.14 -COPY --from=ghcr.io/astral-sh/uv:0.7.10 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.7.18 /uv /uvx /bin/ RUN --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \