@@ -18,15 +18,15 @@ jobs:
1818
1919 steps :
2020 - name : Handle the code
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v3
2222
2323 - name : " Set up Python 3.10"
2424 uses : actions/setup-python@v2
2525 with :
2626 python-version : " 3.10"
2727
2828 - name : Handle pip cache
29- uses : actions/cache@v2
29+ uses : actions/cache@v3
3030 with :
3131 path : ~/.cache/pip
3232 key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
3636 - name : Install required dependencies
3737 run : |
3838 python3 -m pip install --upgrade pip
39- pip install tox tox-wheel
39+ pip install tox
4040
4141 - name : Code check
4242 run : tox -e ${TOX_VENV}
@@ -70,23 +70,23 @@ jobs:
7070 tox-env : pypy3
7171 steps :
7272 - name : Handle the code
73- uses : actions/checkout@v2
73+ uses : actions/checkout@v3
7474
7575 - name : Set up Python ${{ matrix.python-version }}
7676 uses : actions/setup-python@v2
7777 with :
7878 python-version : ${{ matrix.python-version }}
7979
8080 - name : Handle pip cache
81- uses : actions/cache@v2
81+ uses : actions/cache@v3
8282 with :
8383 path : ~/.cache/pip
8484 key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
8585 restore-keys : |
8686 ${{ runner.os }}-pip-
8787
8888 - name : Handle ZK installation cache
89- uses : actions/cache@v2
89+ uses : actions/cache@v3
9090 with :
9191 path : zookeeper
9292 key : ${{ runner.os }}-zookeeper
@@ -110,4 +110,4 @@ jobs:
110110 ZOOKEEPER_LIB : " ${{ !contains(matrix.zk-version, '3.4') && 'lib' || '' }}"
111111
112112 - name : Publish Codecov report
113- uses : codecov/codecov-action@v2
113+ uses : codecov/codecov-action@v3
0 commit comments