diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04fa53b..1379a44 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@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0 + - uses: astral-sh/setup-uv@e06108dd0aef18192324c70427afc47652e63a82 # v7.5.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.10.9" + version: "0.10.10" - name: Install dependencies run: | uv sync --locked diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d6dbbe2..a8f8950 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@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0 + uses: astral-sh/setup-uv@e06108dd0aef18192324c70427afc47652e63a82 # v7.5.0 id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.10.9" + version: "0.10.10" - 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 f946d01..d76229d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: - id: markdownlint-cli2 - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.10.9 + rev: 0.10.10 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 89cd30a..59b73ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM squidfunk/mkdocs-material:9.7.5 -COPY --from=ghcr.io/astral-sh/uv:0.10.9 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.10.10 /uv /uvx /bin/ RUN --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \