From 7e7e475d4a79d7536341929a6b96161c395743ab Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 31 Mar 2026 07:19:37 +0200 Subject: [PATCH] chore: update deploy-docs to use uv --- .github/workflows/deploy-docs.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 8b9d114b6..edd708274 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -29,12 +29,17 @@ jobs: - name: Set up Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: '3.12' + python-version: '3.13' + + - name: Install uv + uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1 + with: + activate-environment: true + python-version: '3.13' - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -r docs/requirements-docs.txt + uv pip install -r docs/requirements-docs.txt - name: Fetch gh-pages branch run: |