Skip to content

Commit 17545a8

Browse files
authored
Removed pip cache (#125)
**Solves the following issue(s):** Closes #... **Core changes:** None **Model-specific changes:** None **Documentation changes:** None
1 parent 43b9844 commit 17545a8

File tree

3 files changed

+0
-26
lines changed

3 files changed

+0
-26
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,6 @@ jobs:
3636
with:
3737
python-version: "3.10"
3838

39-
- name: Cache pip
40-
uses: actions/cache@v3
41-
with:
42-
path: ~/.cache/pip
43-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
44-
restore-keys: |
45-
${{ runner.os }}-pip-
46-
4739
- name: Install prerequisites (Ubuntu)
4840
uses: ./.github/actions/install/ubuntu-latest
4941
env:

.github/workflows/reusable-testing.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,6 @@ jobs:
3535
- name: Display Python version
3636
run: python -c "import sys; print(sys.version)"
3737

38-
# Cache pip dependencies
39-
- name: Cache pip
40-
uses: actions/cache@v3
41-
with:
42-
path: ~/.cache/pip
43-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
44-
restore-keys: |
45-
${{ runner.os }}-pip-
46-
4738
# Install prereqs
4839
# I don't think it's possible to use a single action for this because
4940
# we can't use ${inputs.os} in an if statement, so we have to use two different actions.

.github/workflows/static_analysis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,6 @@ jobs:
4242
- name: Display Python version
4343
run: python -c "import sys; print(sys.version)"
4444

45-
# Cache pip dependencies
46-
- name: Cache pip
47-
uses: actions/cache@v3
48-
with:
49-
path: ~/.cache/pip
50-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
51-
restore-keys: |
52-
${{ runner.os }}-pip-
53-
5445
- name: Install prerequisites (Ubuntu)
5546
uses: ./.github/actions/install/ubuntu-latest
5647

0 commit comments

Comments
 (0)