Browse Source

chore: update uv to 0.8.9 (#23833)

tags/1.8.0
Bowen Liang 2 months ago
parent
commit
a77dfb69b0
No account linked to committer's email address
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      .github/actions/setup-uv/action.yml
  2. 1
    1
      api/Dockerfile

+ 2
- 2
.github/actions/setup-uv/action.yml View File

uv-version: uv-version:
description: UV version to set up description: UV version to set up
required: true required: true
default: '~=0.7.11'
default: '0.8.9'
uv-lockfile: uv-lockfile:
description: Path to the UV lockfile to restore cache from description: Path to the UV lockfile to restore cache from
required: true required: true
python-version: ${{ inputs.python-version }} python-version: ${{ inputs.python-version }}


- name: Install uv - name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with: with:
version: ${{ inputs.uv-version }} version: ${{ inputs.uv-version }}
python-version: ${{ inputs.python-version }} python-version: ${{ inputs.python-version }}

+ 1
- 1
api/Dockerfile View File

WORKDIR /app/api WORKDIR /app/api


# Install uv # Install uv
ENV UV_VERSION=0.7.11
ENV UV_VERSION=0.8.9


RUN pip install --no-cache-dir uv==${UV_VERSION} RUN pip install --no-cache-dir uv==${UV_VERSION}



Loading…
Cancel
Save