3232 runs-on : ubuntu-latest
3333 steps :
3434 - name : Checkout
35- uses : actions/checkout@v4
35+ uses : actions/checkout@v6
3636 - name : Set up Python ${{ env.PYTHON_VERSION }}
37- uses : actions/setup-python@v5
37+ uses : actions/setup-python@v6
3838 with :
3939 python-version : ${{ env.PYTHON_VERSION }}
4040 - name : Bootstrap poetry (Linux and macOS)
5555 sudo find _build -name .doctrees -prune -exec rm -rf {} \;
5656 sudo find _build -name .buildinfo -exec rm {} \;
5757 - name : Upload HTML
58- uses : actions/upload-artifact@v4
58+ uses : actions/upload-artifact@v6
5959 with :
6060 name : html-build-artifact
6161 path : _build/docs
7070 echo ${{ github.event.action }} > ./pr/action.txt
7171 - name : Upload PR information
7272 if : github.event_name == 'pull_request'
73- uses : actions/upload-artifact@v4
73+ uses : actions/upload-artifact@v6
7474 with :
7575 name : pr
7676 path : pr/
@@ -80,15 +80,15 @@ jobs:
8080 needs : [build-docs]
8181 runs-on : ubuntu-latest
8282 steps :
83- - uses : actions/checkout@v4
83+ - uses : actions/checkout@v6
8484 with :
8585 ref : " gh-pages"
8686 - name : Initialize Git configuration
8787 run : |
8888 git config user.name docs-build
8989 git config user.email do-not-send@github.com
9090 - name : Download artifacts
91- uses : actions/download-artifact@v4
91+ uses : actions/download-artifact@v7
9292 with :
9393 name : html-build-artifact
9494 path : ${{ github.ref_name }}
0 commit comments