@@ -24,10 +24,10 @@ jobs:
24
24
fail-fast : false
25
25
26
26
steps :
27
- - uses : actions/checkout@v2
27
+ - uses : actions/checkout@v4
28
28
29
29
- name : Set up Python 3.10
30
- uses : actions/setup-python@v2
30
+ uses : actions/setup-python@v4
31
31
with :
32
32
python-version : ' 3.10'
33
33
@@ -58,12 +58,12 @@ jobs:
58
58
# python-version: '3.10'
59
59
60
60
steps :
61
- - uses : actions/checkout@v2
61
+ - uses : actions/checkout@v4
62
62
with :
63
63
fetch-depth : ' 0'
64
64
65
65
- name : Set up Python ${{ matrix.python-version }}
66
- uses : actions/setup-python@v2
66
+ uses : actions/setup-python@v4
67
67
with :
68
68
python-version : ${{ matrix.python-version }}
69
69
@@ -102,7 +102,7 @@ jobs:
102
102
run : |
103
103
python -m build
104
104
105
- - uses : actions/upload-artifact@v2
105
+ - uses : actions/upload-artifact@v3
106
106
if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
107
107
with :
108
108
path : dist
@@ -112,7 +112,7 @@ jobs:
112
112
runs-on : ubuntu-latest
113
113
114
114
steps :
115
- - uses : actions/download-artifact@v2
115
+ - uses : actions/download-artifact@v3
116
116
with :
117
117
name : artifact
118
118
path : dist
@@ -124,8 +124,8 @@ jobs:
124
124
with :
125
125
user : __token__
126
126
password : ${{ secrets.test_pypi_token }}
127
- repository_url : https://test.pypi.org/legacy/
128
- skip_existing : true
127
+ repository-url : https://test.pypi.org/legacy/
128
+ skip-existing : true
129
129
# verbose: true
130
130
131
131
- name : Publish to PyPI
0 commit comments