Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auth-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v6

- name: Install dependencies
run: uv sync
Expand Down
50 changes: 8 additions & 42 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,8 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv (Unix)
if: matrix.platform != 'windows'
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

- name: Install uv (Windows)
if: matrix.platform == 'windows'
shell: pwsh
run: |
irm https://astral.sh/uv/install.ps1 | iex
echo "$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install uv
uses: astral-sh/setup-uv@v6

- name: Cache uv environments
uses: actions/cache@v3
Expand Down Expand Up @@ -136,18 +126,8 @@ jobs:
sudo apt-get update
sudo apt-get install -y upx-ucl

- name: Install uv (Unix)
if: matrix.platform != 'windows'
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

- name: Install uv (Windows)
if: matrix.platform == 'windows'
shell: pwsh
run: |
irm https://astral.sh/uv/install.ps1 | iex
echo "$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install uv
uses: astral-sh/setup-uv@v6

- name: Install Python dependencies
run: |
Expand Down Expand Up @@ -217,9 +197,7 @@ jobs:
run: brew install upx

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6

- name: Install dependencies
run: uv sync --extra dev --extra build
Expand Down Expand Up @@ -318,9 +296,7 @@ jobs:
run: brew install upx

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6

- name: Install dependencies
run: uv sync --extra dev --extra build
Expand Down Expand Up @@ -433,18 +409,8 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv (Unix)
if: matrix.platform != 'windows'
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

- name: Install uv (Windows)
if: matrix.platform == 'windows'
shell: pwsh
run: |
irm https://astral.sh/uv/install.ps1 | iex
echo "$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install uv
uses: astral-sh/setup-uv@v6

- name: Install test dependencies
run: uv sync --extra dev
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/ci-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6

- name: Cache uv environments
uses: actions/cache@v3
Expand Down Expand Up @@ -127,9 +125,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6

- name: Install test dependencies
run: uv sync --extra dev
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6
Comment on lines 37 to +38
Copy link

Copilot AI Mar 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI now installs uv via astral-sh/setup-uv@v6 to avoid intermittent 404s from astral.sh/uv/install.sh, but the repo still documents the curl-based installer in docs/src/content/docs/getting-started/installation.md (contributors section) and in .github/workflows/cli-consistency-checker.md. Those instructions are likely to remain flaky for contributors/automation; please update them to a more reliable uv install method (or link to Astral’s official install docs) to keep documentation consistent with this change.

Copilot uses AI. Check for mistakes.

- name: Cache uv environments
uses: actions/cache@v3
Expand Down Expand Up @@ -78,9 +76,7 @@ jobs:
sudo apt-get install -y upx-ucl

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uses: astral-sh/setup-uv@v6

- name: Install Python dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
python-version: '3.12'

- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v6

- name: Sync dependencies with uv
run: uv sync
Expand Down
Loading