Skip to content

Commit 91fdf36

Browse files
authored
Fix minimum workflows running out of disk space (#479)
1 parent 65051a4 commit 91fdf36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.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

0 commit comments

Comments
 (0)