16
16
runs-on : ubuntu-latest
17
17
name : Python sdist/wheel
18
18
steps :
19
- - uses : actions/checkout@v1
20
- - uses : actions/setup-python@v2
19
+ - uses : actions/checkout@v3
20
+ - uses : actions/setup-python@v3
21
21
with :
22
22
python-version : " 3.9"
23
23
- name : Install dependencies
27
27
28
28
- name : Build package
29
29
run : python -m build -o dist/
30
- - uses : actions/upload-artifact@v2
30
+ - uses : actions/upload-artifact@v3
31
31
with :
32
32
name : dist
33
33
path : dist
@@ -48,17 +48,17 @@ jobs:
48
48
- python-version : 3.9
49
49
install-from : " dist/*.tar.gz"
50
50
steps :
51
- - uses : actions/checkout@v1
51
+ - uses : actions/checkout@v3
52
52
- name : Set up Python ${{ matrix.python-version }}
53
- uses : actions/setup-python@v2
53
+ uses : actions/setup-python@v3
54
54
with :
55
55
python-version : ${{ matrix.python-version }}
56
56
- name : Install dependencies
57
57
run : |
58
58
python -m pip install --upgrade pip
59
59
pip install -U setuptools setuptools_scm
60
60
pip install pytest
61
- - uses : actions/download-artifact@v2
61
+ - uses : actions/download-artifact@v3
62
62
with :
63
63
name : dist
64
64
path : dist
@@ -72,10 +72,10 @@ jobs:
72
72
runs-on : ubuntu-latest
73
73
needs : [dist]
74
74
steps :
75
- - uses : actions/setup-python@v2
75
+ - uses : actions/setup-python@v3
76
76
with :
77
77
python-version : " 3.9"
78
- - uses : actions/download-artifact@v2
78
+ - uses : actions/download-artifact@v3
79
79
with :
80
80
name : dist
81
81
path : dist
87
87
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
88
88
needs : [dist_check, test]
89
89
steps :
90
- - uses : actions/download-artifact@v2
90
+ - uses : actions/download-artifact@v3
91
91
with :
92
92
name : dist
93
93
path : dist
0 commit comments