Skip to content

Commit 707a02c

Browse files
authoredOct 23, 2024··
fix(ci): remove pip cache (#11702)
1 parent 6787db7 commit 707a02c

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎.github/workflows/build-and-test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ jobs:
7070
- uses: actions/setup-python@v5
7171
with:
7272
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') }}
7478
- name: Set up JDK 17
7579
uses: actions/setup-java@v4
7680
with:

‎.github/workflows/documentation.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ jobs:
4444
- uses: actions/setup-python@v5
4545
with:
4646
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') }}
4852
- name: Install Python dependencies
4953
run: ./metadata-ingestion/scripts/install_deps.sh
5054
- name: Build Docs

‎.github/workflows/metadata-ingestion.yml

-5
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,11 @@ jobs:
6262
- uses: actions/setup-python@v5
6363
with:
6464
python-version: ${{ matrix.python-version }}
65-
cache: "pip"
6665
- uses: actions/cache@v4
6766
with:
6867
path: |
6968
~/.cache/uv
7069
key: ${{ runner.os }}-uv-${{ hashFiles('**/requirements.txt') }}
71-
- uses: actions/setup-python@v5
72-
with:
73-
python-version: ${{ matrix.python-version }}
74-
cache: "pip"
7570
- name: Install dependencies
7671
run: ./metadata-ingestion/scripts/install_deps.sh
7772
- name: Install package

0 commit comments

Comments
 (0)
Please sign in to comment.