1111 runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout source code
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v3
1515 - name : Set up Python 3.10
16- uses : actions/setup-python@v2
16+ uses : actions/setup-python@v4
1717 with :
1818 python-version : ' 3.10'
1919 - name : Install dependencies
2828 python : ['3.7', '3.8', '3.9', '3.10']
2929 steps :
3030 - name : Checkout source code
31- uses : actions/checkout@v2
31+ uses : actions/checkout@v3
3232 - name : Set up Python ${{ matrix.python }}
33- uses : actions/setup-python@v2
33+ uses : actions/setup-python@v4
3434 with :
3535 python-version : ${{ matrix.python }}
3636 - name : Install dependencies
@@ -43,19 +43,19 @@ jobs:
4343 runs-on : ubuntu-latest
4444 steps :
4545 - name : Checkout source code
46- uses : actions/checkout@v2
46+ uses : actions/checkout@v3
4747 with :
4848 fetch-depth : 0
4949 - name : Set up Python 3.10
50- uses : actions/setup-python@v2
50+ uses : actions/setup-python@v4
5151 with :
5252 python-version : ' 3.10'
5353 - name : Install dependencies
5454 run : python -m pip install tox
5555 - name : Build docs (via tox)
5656 run : tox -e docs
5757 - name : Archive build results
58- uses : actions/upload-artifact@v2
58+ uses : actions/upload-artifact@v3
5959 with :
6060 name : html-docs-build
6161 path : docs/_build/html
@@ -67,11 +67,11 @@ jobs:
6767 if : github.event_name == 'push'
6868 steps :
6969 - name : Checkout source code
70- uses : actions/checkout@v2
70+ uses : actions/checkout@v3
7171 with :
7272 fetch-depth : 0
7373 - name : Set up Python 3.10
74- uses : actions/setup-python@v2
74+ uses : actions/setup-python@v4
7575 with :
7676 python-version : ' 3.10'
7777 - name : Install dependencies
0 commit comments