Skip to content

Commit 72bb135

Browse files
committed
ci: update ubuntu and action versions
1 parent f3afcd7 commit 72bb135

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,28 @@ jobs:
1111
matrix:
1212
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2.7", "pypy3.9"]
1313
include:
14+
- setup-python: true
1415
- check-types: true
1516
- python-version: "2.7"
1617
container: "python:2.7.18-buster"
18+
setup-python: false
1719
check-types: false
1820
- python-version: "3.5"
21+
container: "python:3.5.10-buster"
22+
setup-python: false
1923
check-types: false
2024
- python-version: "pypy2.7"
2125
check-types: false
2226

23-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-24.04
2428
container: ${{ matrix.container }}
2529

2630
steps:
27-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
2832

2933
- name: Set up Python ${{ matrix.python-version }}
30-
if: ${{ matrix.python-version != '2.7' }}
31-
uses: actions/setup-python@v4
34+
if: ${{ matrix.setup-python }}
35+
uses: actions/setup-python@v5
3236
with:
3337
python-version: ${{ matrix.python-version }}
3438

0 commit comments

Comments
 (0)