1111 runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout source code
14- uses : actions/checkout@v3
14+ uses : actions/checkout@v4
1515 - name : Set up Python
16- uses : actions/setup-python@v4
16+ uses : actions/setup-python@v5
1717 with :
1818 python-version : ' 3.12'
1919 - name : Install dependencies
2828 python : ['3.8', '3.9', '3.10', '3.11', '3.12']
2929 steps :
3030 - name : Checkout source code
31- uses : actions/checkout@v3
31+ uses : actions/checkout@v4
3232 - name : Set up Python ${{ matrix.python }}
33- uses : actions/setup-python@v4
33+ uses : actions/setup-python@v5
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@v3
46+ uses : actions/checkout@v4
4747 with :
4848 fetch-depth : 0
4949 - name : Set up Python
50- uses : actions/setup-python@v4
50+ uses : actions/setup-python@v5
5151 with :
5252 python-version : ' 3.12'
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@v3
58+ uses : actions/upload-artifact@v4
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@v3
70+ uses : actions/checkout@v4
7171 with :
7272 fetch-depth : 0
7373 - name : Set up Python
74- uses : actions/setup-python@v4
74+ uses : actions/setup-python@v5
7575 with :
7676 python-version : ' 3.12'
7777 - name : Install dependencies
0 commit comments