@@ -31,13 +31,13 @@ jobs:
3131 OS : ${{ matrix.os }}
3232 UPLOAD_TO_GHPAGES : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
3333 steps :
34- - uses : actions/checkout@v2.3.4
34+ - uses : actions/checkout@v3.0.2
3535 with :
3636 fetch-depth : ' 0'
3737 # if we upload to ghpages we need the full
3838 # history to generate correct version info
3939 if : ${{ fromJSON(env.UPLOAD_TO_GHPAGES) }}
40- - uses : actions/checkout@v2.3.4
40+ - uses : actions/checkout@v3.0.2
4141 if : ${{ !fromJSON(env.UPLOAD_TO_GHPAGES) }}
4242 - name : setup ubuntu-latest xvfb
4343 uses : ./.github/actions/setup-ubuntu-latest-xvfb
4646 run : sudo apt install pandoc
4747 if : runner.os == 'Linux'
4848 - name : Install pandoc on windows
49- uses : Wandalen/wretry.action@v1.0.12
49+ uses : Wandalen/wretry.action@v1.0.15
5050 with :
5151 action : crazy-max/ghaction-chocolatey@v1.6.0
5252 with : |
@@ -55,14 +55,14 @@ jobs:
5555 attempt_delay : 1000
5656 if : runner.os == 'Windows'
5757 - name : Set up Python ${{ matrix.python-version }}
58- uses : actions/setup-python@v2.3.1
58+ uses : actions/setup-python@v3.1.2
5959 with :
6060 python-version : ${{ matrix.python-version }}
6161 - name : prepare pip cache
6262 id : prepare-cache-pip
6363 uses : ./.github/actions/prepare-cache-pip
6464 - name : pip cache
65- uses : actions/cache@v2.1.7
65+ uses : actions/cache@v3.0.2
6666 with :
6767 path : ${{ steps.prepare-cache-pip.outputs.cache-dir }}
6868 key : ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/docs_requirements.txt') }}-${{ hashFiles('**/setup.cfg') }}
@@ -90,12 +90,12 @@ jobs:
9090 ./make.bat html
9191 if : runner.os == 'Windows'
9292 - name : Upload build docs
93- uses : actions/upload-artifact@v2.3.1
93+ uses : actions/upload-artifact@v3.0.0
9494 with :
9595 name : docs_${{ matrix.python-version }}_${{ matrix.os }}
9696 path : ${{ github.workspace }}/docs/_build/html
9797 - name : Deploy to gh pages
98- uses : JamesIves/github-pages-deploy-action@v4.2.2
98+ uses : JamesIves/github-pages-deploy-action@v4.3.3
9999 with :
100100 branch : gh-pages
101101 folder : ${{ github.workspace }}/docs/_build/html
0 commit comments