From dbc1ed6921b31ac0f026942cdcf4e0193295c521 Mon Sep 17 00:00:00 2001 From: staticdev Date: Mon, 27 Jan 2025 12:02:35 +0100 Subject: [PATCH] Pin version of UV --- .github/workflows/release-dev.yml | 3 ++- .github/workflows/release.yml | 2 ++ .github/workflows/tests.yml | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index f76519e..452ff2e 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -20,6 +20,8 @@ jobs: - name: Install UV uses: astral-sh/setup-uv@v5 + with: + version: ">=0.5.24" - name: Install dependencies run: | @@ -32,6 +34,5 @@ jobs: - name: Publish package on TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ password: ${{ secrets.TEST_PYPI_TOKEN }} repository-url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4b92a2..2f3c340 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,8 @@ jobs: - name: Install UV uses: astral-sh/setup-uv@v5 + with: + version: ">=0.5.24" - name: Install dependencies run: | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3901004..4ce1e83 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,6 +40,8 @@ jobs: - name: Install UV uses: astral-sh/setup-uv@v5 + with: + version: ">=0.5.24" - name: Install dependencies run: | @@ -102,6 +104,8 @@ jobs: - name: Install UV uses: astral-sh/setup-uv@v5 + with: + version: ">=0.5.24" - name: Download coverage data uses: actions/download-artifact@v4