Skip to content

Commit

Permalink
ci: Upgrade uv to avoid timeouts (#749)
Browse files Browse the repository at this point in the history
Upgrade uv in CI

Signed-off-by: Juan Luis Cano Rodríguez <juan_luis_cano@mckinsey.com>
Co-authored-by: Ankita Katiyar <110245118+ankatiyar@users.noreply.github.com>
  • Loading branch information
astrojuanlu and ankatiyar authored Jul 8, 2024
1 parent fca6b45 commit be99fec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
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

0 comments on commit be99fec

Please sign in to comment.