This is an automated email from the ASF dual-hosted git repository. Gerrrr pushed a commit to branch fix-build in repository https://gitbox.apache.org/repos/asf/otava.git
commit 5344f7df43b66617b6189ba88f9253d2ff721382 Author: Alex Sorokoumov <[email protected]> AuthorDate: Sat Jul 25 15:43:10 2026 -0700 Fix setup-uv allowlist failure in CI --- .github/workflows/python-app.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 1c03584..4bc40b6 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -45,9 +45,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 + uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 with: python-version: ${{ matrix.python-version }} + prune-cache: true - name: Install the project run: uv sync --all-extras --dev @@ -76,9 +77,10 @@ jobs: python-version: "3.10" - name: Install uv - uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 + uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 with: python-version: "3.14" + prune-cache: true - name: Install the project run: uv sync --all-extras --dev
