Commit 9eb3aad 1 parent 5f148f0 commit 9eb3aad Copy full SHA for 9eb3aad
File tree 4 files changed +21
-12
lines changed
4 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,14 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- name : Checkout
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
+ with :
23
+ # all history is needed to crawl it properly
24
+ fetch-depth : 0
22
25
- name : Set up Python
23
- uses : actions/setup-python@v3
26
+ uses : actions/setup-python@v5
24
27
with :
25
- python-version : ' 3.9 '
28
+ python-version : ' 3.11 '
26
29
- name : Install build dependencies
27
30
run : |
28
31
if [ -f requirements-deploy.txt ]; then pip install -r requirements-deploy.txt; fi
Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
+ with :
20
+ # all history is needed to crawl it properly
21
+ fetch-depth : 0
19
22
- name : Set up Python
20
- uses : actions/setup-python@v3
23
+ uses : actions/setup-python@v5
21
24
with :
22
- python-version : ' 3.9 '
25
+ python-version : ' 3.11 '
23
26
- name : Install build dependencies
24
27
run : |
25
28
if [ -f requirements-deploy.txt ]; then pip install -r requirements-deploy.txt; fi
Original file line number Diff line number Diff line change @@ -26,11 +26,14 @@ jobs:
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
+ with :
31
+ # all history is needed to crawl it properly
32
+ fetch-depth : 0
30
33
- name : Set up Python
31
- uses : actions/setup-python@v3
34
+ uses : actions/setup-python@v5
32
35
with :
33
- python-version : ' 3.9 '
36
+ python-version : ' 3.11 '
34
37
- name : Install test dependencies
35
38
run : |
36
39
pip install -r requirements-test.txt
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
test-and-coverage :
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v3
18
- - uses : actions/setup-python@v3
17
+ - uses : actions/checkout@v4
18
+ - uses : actions/setup-python@v5
19
19
with :
20
- python-version : ' 3.9 '
20
+ python-version : ' 3.11 '
21
21
- name : Execute tests
22
22
run : |
23
23
pip install -r requirements-test.txt
You can’t perform that action at this time.
0 commit comments