@@ -24,10 +24,10 @@ jobs:
2424 fail-fast : false
2525
2626 steps :
27- - uses : actions/checkout@v2
27+ - uses : actions/checkout@v4
2828
2929 - name : Set up Python 3.10
30- uses : actions/setup-python@v2
30+ uses : actions/setup-python@v4
3131 with :
3232 python-version : ' 3.10'
3333
@@ -58,12 +58,12 @@ jobs:
5858 # python-version: '3.10'
5959
6060 steps :
61- - uses : actions/checkout@v2
61+ - uses : actions/checkout@v4
6262 with :
6363 fetch-depth : ' 0'
6464
6565 - name : Set up Python ${{ matrix.python-version }}
66- uses : actions/setup-python@v2
66+ uses : actions/setup-python@v4
6767 with :
6868 python-version : ${{ matrix.python-version }}
6969
@@ -102,7 +102,7 @@ jobs:
102102 run : |
103103 python -m build
104104
105- - uses : actions/upload-artifact@v2
105+ - uses : actions/upload-artifact@v3
106106 if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
107107 with :
108108 path : dist
@@ -112,7 +112,7 @@ jobs:
112112 runs-on : ubuntu-latest
113113
114114 steps :
115- - uses : actions/download-artifact@v2
115+ - uses : actions/download-artifact@v3
116116 with :
117117 name : artifact
118118 path : dist
@@ -124,8 +124,8 @@ jobs:
124124 with :
125125 user : __token__
126126 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
129129 # verbose: true
130130
131131 - name : Publish to PyPI
0 commit comments