Skip to content

Commit 846bd6c

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

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ jobs:
1414
- check-types: true
1515
- python-version: "2.7"
1616
container: "python:2.7.18-buster"
17+
setup-python: false
1718
check-types: false
1819
- python-version: "3.5"
20+
container: "python:3.5.10-buster"
21+
setup-python: false
1922
check-types: false
2023
- python-version: "pypy2.7"
2124
check-types: false
2225

23-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-24.04
2427
container: ${{ matrix.container }}
2528

2629
steps:
27-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
2831

2932
- name: Set up Python ${{ matrix.python-version }}
30-
if: ${{ matrix.python-version != '2.7' }}
31-
uses: actions/setup-python@v4
33+
if: ${{ ! matrix.setup-python }}
34+
uses: actions/setup-python@v5
3235
with:
3336
python-version: ${{ matrix.python-version }}
3437

0 commit comments

Comments
 (0)