From c57c2ae562f08cf5d5cc3410a2d552bdd60bed35 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg <31703736+nathan-weinberg@users.noreply.github.com> Date: Wed, 3 Dec 2025 17:13:10 -0500 Subject: [PATCH] fix(ci): use latest version of setup-uv and remove pin (#4299) # What does this PR do? this commit puts aligns all 'setup-uv' instances to the latest version and removes the pin keeping several actions on a very old version Signed-off-by: Nathan Weinberg --- .github/actions/setup-runner/action.yml | 3 +-- .github/workflows/python-build-test.yml | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/actions/setup-runner/action.yml b/.github/actions/setup-runner/action.yml index 3237abb67..6c642b310 100644 --- a/.github/actions/setup-runner/action.yml +++ b/.github/actions/setup-runner/action.yml @@ -13,10 +13,9 @@ runs: using: "composite" steps: - name: Install uv - uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1 + uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4 with: python-version: ${{ inputs.python-version }} - version: 0.7.6 - name: Configure client installation id: client-config diff --git a/.github/workflows/python-build-test.yml b/.github/workflows/python-build-test.yml index 9c79021cf..912612180 100644 --- a/.github/workflows/python-build-test.yml +++ b/.github/workflows/python-build-test.yml @@ -28,7 +28,6 @@ jobs: with: python-version: ${{ matrix.python-version }} activate-environment: true - version: 0.7.6 - name: Build Llama Stack API package working-directory: src/llama_stack_api