3131
3232 steps :
3333 - name : Checkout
34- uses : actions/checkout@v2
34+ uses : actions/checkout@v3
3535
3636 - uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
3737
@@ -45,19 +45,19 @@ jobs:
4545 python -m pytest --cov traitlets --cov-report=xml -v traitlets
4646
4747 - name : Upload coverage to Codecov
48- uses : codecov/codecov-action@v2
48+ uses : codecov/codecov-action@v3
4949
5050 test_miniumum_verisons :
5151 name : Test Minimum Versions
5252 runs-on : ubuntu-latest
5353 timeout-minutes : 10
5454 steps :
55- - uses : actions/checkout@v2
55+ - uses : actions/checkout@v3
5656 - name : Base Setup
5757 uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
5858 with :
5959 python_version : " 3.7"
60- - name : Install miniumum versions
60+ - name : Install minimum versions
6161 uses : jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
6262 - name : Run the unit tests
6363 run : pytest -vv -W default traitlets || pytest -vv -W default traitlets --lf
6868 runs-on : ubuntu-latest
6969 steps :
7070 - name : Checkout
71- uses : actions/checkout@v2
71+ uses : actions/checkout@v3
7272 - name : Base Setup
7373 uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
7474 - name : Install the Python dependencies
8787 runs-on : ubuntu-latest
8888 timeout-minutes : 10
8989 steps :
90- - uses : actions/checkout@v2
90+ - uses : actions/checkout@v3
9191 - uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
9292 - uses : jupyterlab/maintainer-tools/.github/actions/make-sdist@v1
9393
@@ -104,8 +104,10 @@ jobs:
104104 name : pre-commit
105105 runs-on : ubuntu-latest
106106 steps :
107- - uses : actions/checkout@v2
108- - uses : actions/setup-python@v2
107+ - uses : actions/checkout@v3
108+ - uses : actions/setup-python@v4
109+ with :
110+ python-version : 3.x
109111 - uses : pre-commit/action@v2.0.0
110112 with :
111113 extra_args : --all-files --hook-stage=manual
0 commit comments