File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
1919 python-version : [3.8]
2020
2121 steps :
22- - uses : actions/checkout@v2
22+ - uses : actions/checkout@v3
2323
2424 - name : Set up Python ${{ matrix.python-version }}
25- uses : actions/setup-python@v2
25+ uses : actions/setup-python@v3
2626 with :
2727 python-version : ${{ matrix.python-version }}
2828
Original file line number Diff line number Diff line change 1313 name : python source distribution
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v3
1717 - name : Set up Python 3.8
18- uses : actions/setup-python@v2
18+ uses : actions/setup-python@v3
1919 with :
2020 python-version : 3.8
2121
3333 - name : run pytest
3434 run : pytest tests/
3535
36- - uses : actions/upload-artifact@v2
36+ - uses : actions/upload-artifact@v3
3737 if : ${{ startsWith(github.ref, 'refs/tags') }}
3838 with :
3939 path : ./dist/*.tar.gz
4949 python-version : [3.8]
5050
5151 steps :
52- - uses : actions/checkout@v2
52+ - uses : actions/checkout@v3
5353
54- - uses : actions/setup-python@v2
54+ - uses : actions/setup-python@v3
5555 name : Install Python
5656 with :
5757 python-version : ${{ matrix.python-version }}
7171 - name : run pytests
7272 run : pytest tests
7373
74- - uses : actions/upload-artifact@v2
74+ - uses : actions/upload-artifact@v3
7575 if : ${{ startsWith(github.ref, 'refs/tags') }}
7676 with :
7777 path : ./dist/*.whl
8484 needs : [build_wheels, from-sdist]
8585 steps :
8686 - name : Download wheels and sdist
87- uses : actions/download-artifact@v2
87+ uses : actions/download-artifact@v3
8888
8989 - name : Move wheels and source distribution to dist/
9090 run : |
You can’t perform that action at this time.
0 commit comments