File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
19
19
steps :
20
20
- name : Checkout
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v3
22
22
23
23
- name : Set Up Python ${{ matrix.python-version }}
24
- uses : actions/setup-python@v3
24
+ uses : actions/setup-python@v4
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
31
31
echo "::set-output name=dir::$(pip cache dir)"
32
32
33
33
- name : pip cache
34
- uses : actions/cache@v2
34
+ uses : actions/cache@v3
35
35
with :
36
36
path : ${{ steps.pip-cache.outputs.dir }}
37
37
key :
@@ -47,10 +47,10 @@ jobs:
47
47
- name : tox
48
48
env :
49
49
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50
- run : tox -e py,lint,coveralls, release
50
+ run : tox -e py,lint,release # coveralls
51
51
52
52
- name : upload dist
53
- uses : actions/upload-artifact@v2
53
+ uses : actions/upload-artifact@v3
54
54
with :
55
55
name : ${{ matrix.os }}_${{ matrix.python-version}}_dist
56
56
path : dist
61
61
needs : [tox]
62
62
steps :
63
63
- name : Download dists for PyPI
64
- uses : actions/download-artifact@v2
64
+ uses : actions/download-artifact@v3
65
65
with :
66
66
name : ubuntu-latest_3.8_dist
67
67
path : dist
You can’t perform that action at this time.
0 commit comments