Skip to content

Commit e02d39f

Browse files
authored
Merge pull request #45 from HumanBrainProject/update-gh-actions
Fix and update GitHub Actions
2 parents 607ea97 + 4d61e05 commit e02d39f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tox.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ '3.12', '3.11', '3.10', '3.9', '3.8', '3.7' ]
17+
python-version: [ '3.12', '3.11', '3.10', '3.9', '3.8']
1818
runs-on: ['ubuntu-latest']
1919
include:
20-
- runs-on: 'ubuntu-20.04'
21-
python-version: '3.6'
20+
- runs-on: 'ubuntu-22.04'
21+
python-version: '3.7'
2222
runs-on: ${{ matrix.runs-on }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v5.0.0
2525
with:
26-
lfs: true
26+
lfs: false # 2025-09-16 out of budget
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v4
28+
uses: actions/setup-python@v6.0.0
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: PIP cache
32-
uses: actions/cache@v2
32+
uses: actions/cache@v4.2.4
3333
with:
3434
path: ~/.cache/pip
3535
key: ${{ runner.os }}-pip-python${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}

0 commit comments

Comments
 (0)