File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 70
70
- uses : actions/setup-python@v5
71
71
with :
72
72
python-version : " 3.10"
73
- cache : pip
73
+ - uses : actions/cache@v4
74
+ with :
75
+ path : |
76
+ ~/.cache/uv
77
+ key : ${{ runner.os }}-uv-${{ hashFiles('**/requirements.txt') }}
74
78
- name : Set up JDK 17
75
79
uses : actions/setup-java@v4
76
80
with :
Original file line number Diff line number Diff line change 44
44
- uses : actions/setup-python@v5
45
45
with :
46
46
python-version : " 3.10"
47
- cache : pip
47
+ - uses : actions/cache@v4
48
+ with :
49
+ path : |
50
+ ~/.cache/uv
51
+ key : ${{ runner.os }}-uv-${{ hashFiles('**/requirements.txt') }}
48
52
- name : Install Python dependencies
49
53
run : ./metadata-ingestion/scripts/install_deps.sh
50
54
- name : Build Docs
Original file line number Diff line number Diff line change @@ -62,16 +62,11 @@ jobs:
62
62
- uses : actions/setup-python@v5
63
63
with :
64
64
python-version : ${{ matrix.python-version }}
65
- cache : " pip"
66
65
- uses : actions/cache@v4
67
66
with :
68
67
path : |
69
68
~/.cache/uv
70
69
key : ${{ runner.os }}-uv-${{ hashFiles('**/requirements.txt') }}
71
- - uses : actions/setup-python@v5
72
- with :
73
- python-version : ${{ matrix.python-version }}
74
- cache : " pip"
75
70
- name : Install dependencies
76
71
run : ./metadata-ingestion/scripts/install_deps.sh
77
72
- name : Install package
You can’t perform that action at this time.
0 commit comments