13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- name : Set up Python 3.9
18
- uses : actions/setup-python@v2
18
+ uses : actions/setup-python@v5
19
19
with :
20
20
python-version : 3.9
21
21
- name : Install dependencies
@@ -36,15 +36,15 @@ jobs:
36
36
37
37
strategy :
38
38
matrix :
39
- python-version : ["3.7 ", "3.8 ", "3.9 "]
39
+ python-version : ["3.9 ", "3.10 ", "3.11", "3.12 "]
40
40
41
41
steps :
42
42
- name : Set up Python ${{ matrix.python-version }}
43
- uses : actions/setup-python@v2
43
+ uses : actions/setup-python@v5
44
44
with :
45
45
python-version : ${{ matrix.python-version }}
46
46
- name : " Git checkout"
47
- uses : actions/checkout@v2
47
+ uses : actions/checkout@v4
48
48
- name : Install dependencies
49
49
run : |
50
50
python -m pip install --upgrade pip
@@ -63,11 +63,11 @@ jobs:
63
63
64
64
steps :
65
65
- name : Set up Python ${{ matrix.python-version }}
66
- uses : actions/setup-python@v2
66
+ uses : actions/setup-python@v5
67
67
with :
68
68
python-version : 3.9
69
69
- name : " Git checkout"
70
- uses : actions/checkout@v2
70
+ uses : actions/checkout@v4
71
71
- name : Install dependencies
72
72
run : |
73
73
python -m pip install --upgrade pip
0 commit comments