File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
ci :
14
- runs-on : ubuntu-22.04
14
+ # Using 22.04 to be compatiable with Python 3.7 until it is deprecated
15
+ runs-on : ubuntu-22.04
15
16
strategy :
16
17
matrix :
17
18
python-version : [ 3.7, 3.8, 3.9]
18
19
19
20
steps :
20
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
21
22
- name : Set up Python ${{ matrix.python-version }}
22
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
23
24
with :
24
25
python-version : ${{ matrix.python-version }}
25
26
53
54
needs : ci
54
55
runs-on : ubuntu-latest
55
56
steps :
56
- - uses : actions/checkout@v2
57
+ - uses : actions/checkout@v4
57
58
- name : Set up Python 3.9
58
- uses : actions/setup-python@v2
59
+ uses : actions/setup-python@v4
59
60
with :
60
61
python-version : 3.9
61
62
Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
ci :
14
+ # Using 22.04 to be compatiable with Python 3.7 until it is deprecated
14
15
runs-on : ubuntu-22.04
15
16
strategy :
16
17
matrix :
17
18
python-version : [ 3.7, 3.8, 3.9]
18
19
19
20
steps :
20
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
21
22
- name : Set up Python ${{ matrix.python-version }}
22
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
23
24
with :
24
25
python-version : ${{ matrix.python-version }}
25
26
You can’t perform that action at this time.
0 commit comments