Skip to content

Commit a95b11d

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

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,31 @@ 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
24+
- python-version: "3.6"
25+
container: "python:3.6.15-slim-buster"
26+
setup-python: false
2027
- python-version: "pypy2.7"
2128
check-types: false
2229

23-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-24.04
2431
container: ${{ matrix.container }}
2532

2633
steps:
27-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
2835

2936
- name: Set up Python ${{ matrix.python-version }}
30-
if: ${{ matrix.python-version != '2.7' }}
31-
uses: actions/setup-python@v4
37+
if: ${{ matrix.setup-python }}
38+
uses: actions/setup-python@v5
3239
with:
3340
python-version: ${{ matrix.python-version }}
3441

0 commit comments

Comments
 (0)