diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7ad3ffb7..7010faa2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@v4 + uses: astral-sh/setup-uv@v5 - name: Install dependencies run: uv pip install -e ".[dev, all]" - name: Install specific jsonschema diff --git a/.github/workflows/docbuild.yml b/.github/workflows/docbuild.yml index 72db59734..1bd2aa0f6 100644 --- a/.github/workflows/docbuild.yml +++ b/.github/workflows/docbuild.yml @@ -15,7 +15,7 @@ jobs: with: python-version: "3.12" - name: Install uv - uses: astral-sh/setup-uv@v4 + uses: astral-sh/setup-uv@v5 - name: Install dependencies run: uv pip install -e ".[dev, all, doc]" - name: Run doc:build-html diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c321fc9a4..815cad4d0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: python-version: "3.12" - uses: actions/checkout@v4 - name: Install uv - uses: astral-sh/setup-uv@v4 + uses: astral-sh/setup-uv@v5 # Installing all dependencies and not just the linters as mypy needs them for type checking - name: Install dependencies run: uv pip install -e ".[dev, all]" --system