Skip to content

Commit 13c14d5

Browse files
authored
Fix workflows running out of disk space (#171)
1 parent d1839da commit 13c14d5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/dependency_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version-file: 'pyproject.toml'
1515
- name: Install dependencies
1616
run: |
17-
python -m pip install .[dev]
17+
python -m pip install --no-cache-dir .[dev]
1818
make check-deps OUTPUT_FILEPATH=latest_requirements.txt
1919
make fix-lint
2020
- name: Create pull request

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install invoke .[test]
29+
python -m pip install --no-cache-dir invoke .[test]
3030
- name: Run integration tests
3131
run: invoke integration
3232

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install invoke .[dev]
24+
python -m pip install --no-cache-dir invoke .[dev]
2525
- name: Run lint checks
2626
run: invoke lint

.github/workflows/minimum.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515
os: [ubuntu-latest, windows-latest]
1616
include:
17-
- os: macos-13
17+
- os: macos-15-intel
1818
python-version: '3.9'
1919
- os: macos-latest
2020
python-version: '3.13'
@@ -27,6 +27,6 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
python -m pip install invoke .[test]
30+
python -m pip install --no-cache-dir invoke .[test]
3131
- name: Test with minimum versions
3232
run: invoke minimum

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python -m pip install --upgrade pip
3030
python -m pip install requests==2.31.0
3131
python -m pip install bandit==1.7.7
32-
python -m pip install .[test]
32+
python -m pip install --no-cache-dir .[test]
3333
3434
- name: Generate release notes
3535
env:

.github/workflows/readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
python -m pip install invoke rundoc .
28+
python -m pip install --no-cache-dir invoke rundoc .
2929
python -m pip install tomli
3030
python -m pip install packaging
3131
- name: Run the README.md

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install dependencies
3636
run: |
3737
python -m pip install --upgrade pip
38-
python -m pip install .[dev]
38+
python -m pip install --no-cache-dir .[dev]
3939
4040
- name: Create wheel
4141
run: |

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
python -m pip install invoke .[test]
33+
python -m pip install invoke --no-cache-dir .[test]
3434
- name: Run unit tests
3535
run: invoke unit
3636

0 commit comments

Comments
 (0)