11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout source code
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
15
15
- name : Set up Python 3.10
16
- uses : actions/setup-python@v2
16
+ uses : actions/setup-python@v4
17
17
with :
18
18
python-version : ' 3.10'
19
19
- name : Install dependencies
28
28
python : ['3.7', '3.8', '3.9', '3.10']
29
29
steps :
30
30
- name : Checkout source code
31
- uses : actions/checkout@v2
31
+ uses : actions/checkout@v3
32
32
- name : Set up Python ${{ matrix.python }}
33
- uses : actions/setup-python@v2
33
+ uses : actions/setup-python@v4
34
34
with :
35
35
python-version : ${{ matrix.python }}
36
36
- name : Install dependencies
@@ -43,19 +43,19 @@ jobs:
43
43
runs-on : ubuntu-latest
44
44
steps :
45
45
- name : Checkout source code
46
- uses : actions/checkout@v2
46
+ uses : actions/checkout@v3
47
47
with :
48
48
fetch-depth : 0
49
49
- name : Set up Python 3.10
50
- uses : actions/setup-python@v2
50
+ uses : actions/setup-python@v4
51
51
with :
52
52
python-version : ' 3.10'
53
53
- name : Install dependencies
54
54
run : python -m pip install tox
55
55
- name : Build docs (via tox)
56
56
run : tox -e docs
57
57
- name : Archive build results
58
- uses : actions/upload-artifact@v2
58
+ uses : actions/upload-artifact@v3
59
59
with :
60
60
name : html-docs-build
61
61
path : docs/_build/html
@@ -67,11 +67,11 @@ jobs:
67
67
if : github.event_name == 'push'
68
68
steps :
69
69
- name : Checkout source code
70
- uses : actions/checkout@v2
70
+ uses : actions/checkout@v3
71
71
with :
72
72
fetch-depth : 0
73
73
- name : Set up Python 3.10
74
- uses : actions/setup-python@v2
74
+ uses : actions/setup-python@v4
75
75
with :
76
76
python-version : ' 3.10'
77
77
- name : Install dependencies
0 commit comments