Skip to content

chore(deps): update uv #326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
- uses: actions/[email protected]
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.17"
- name: Install pre-commit
run: |
uv sync --locked --only-dev
Expand Down Expand Up @@ -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.17"
- name: Install dependencies
run: |
uv sync --locked
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.17"
- name: Install dependencies
run: uv sync --locked --no-dev
# see: https://squidfunk.github.io/mkdocs-material/publishing-your-site/#with-github-actions
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ repos:
- id: markdownlint-cli2

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.7.10
rev: 0.7.17
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 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.17 /uv /uvx /bin/

RUN --mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
Expand Down