Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Upgrade uv to avoid timeouts #749

Merged
merged 2 commits into from
Jul 8, 2024
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
4 changes: 1 addition & 3 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ on:

jobs:
e2e-tests:
env:
UV_HTTP_TIMEOUT: 1000
defaults:
run:
shell: bash
Expand All @@ -33,7 +31,7 @@ jobs:
restore-keys: ${{inputs.plugin}}
- name: Install uv
run: |
python -m pip install "uv==0.1.13"
python -m pip install "uv==0.2.21"
- name: Install dependencies
run: |
cd ${{ inputs.plugin }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/kedro-datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:

check-docs:
runs-on: ubuntu-latest
env:
UV_HTTP_TIMEOUT: 1000
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -55,7 +53,7 @@ jobs:
restore-keys: kedro-datasets
- name: Install uv
run: |
python -m pip install "uv==0.1.13"
python -m pip install "uv==0.2.21"
- name: Install dependencies
run: |
cd kedro-datasets
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ on:

jobs:
lint:
env:
UV_HTTP_TIMEOUT: 1000
defaults:
run:
shell: bash
Expand All @@ -33,7 +31,7 @@ jobs:
restore-keys: ${{inputs.plugin}}
- name: Install uv
run: |
python -m pip install "uv==0.1.13"
python -m pip install "uv==0.2.21"
- name: Install dependencies
run: |
cd ${{ inputs.plugin }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:

unit-tests:
runs-on: ${{ inputs.os }}
env:
UV_HTTP_TIMEOUT: 1000
defaults:
run:
shell: bash
Expand Down Expand Up @@ -45,7 +43,7 @@ jobs:
uses: microsoft/setup-msbuild@v2
- name: Install uv
run: |
python -m pip install "uv==0.1.13"
python -m pip install "uv==0.2.21"
- name: Install dependencies
run: |
cd ${{ inputs.plugin }}
Expand Down