@@ -63,10 +63,10 @@ jobs:
6363 runs-on : ${{ matrix.runs-on }}
6464
6565 steps :
66- - uses : actions/checkout@v2
66+ - uses : actions/checkout@v3
6767
6868 - name : Setup Python ${{ matrix.python }}
69- uses : actions/setup-python@v2
69+ uses : actions/setup-python@v3
7070 with :
7171 python-version : ${{ matrix.python }}
7272
8484
8585 - name : Cache wheels
8686 if : runner.os == 'macOS'
87- uses : actions/cache@v2
87+ uses : actions/cache@v3
8888 with :
8989 # This path is specific to macOS - we really only need it for PyPy NumPy wheels
9090 # See https://github.com/actions/cache/blob/master/examples.md#python---pip
@@ -193,7 +193,7 @@ jobs:
193193 runs-on : ubuntu-latest
194194
195195 steps :
196- - uses : actions/checkout@v2
196+ - uses : actions/checkout@v3
197197
198198 - name : Setup Python ${{ matrix.python-version }} (deadsnakes)
199199 uses : deadsnakes/action@v2.1.1
@@ -206,7 +206,7 @@ jobs:
206206
207207 - name : Valgrind cache
208208 if : matrix.valgrind
209- uses : actions/cache@v2
209+ uses : actions/cache@v3
210210 id : cache-valgrind
211211 with :
212212 path : valgrind
@@ -286,7 +286,7 @@ jobs:
286286 container : " silkeh/clang:${{ matrix.clang }}"
287287
288288 steps :
289- - uses : actions/checkout@v2
289+ - uses : actions/checkout@v3
290290
291291 - name : Add wget and python3
292292 run : apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
@@ -320,7 +320,7 @@ jobs:
320320 container : nvidia/cuda:11.0-devel-ubuntu20.04
321321
322322 steps :
323- - uses : actions/checkout@v2
323+ - uses : actions/checkout@v3
324324
325325 # tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
326326 - name : Install 🐍 3
@@ -344,7 +344,7 @@ jobs:
344344# container: centos:8
345345#
346346# steps:
347- # - uses: actions/checkout@v2
347+ # - uses: actions/checkout@v3
348348#
349349# - name: Add Python 3 and a few requirements
350350# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
@@ -387,7 +387,7 @@ jobs:
387387 container : centos:7
388388
389389 steps :
390- - uses : actions/checkout@v2
390+ - uses : actions/checkout@v3
391391
392392 - name : Add Python 3 and a few requirements
393393 run : yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3
@@ -448,7 +448,7 @@ jobs:
448448 container : " gcc:${{ matrix.gcc }}"
449449
450450 steps :
451- - uses : actions/checkout@v1
451+ - uses : actions/checkout@v3
452452
453453 - name : Add Python 3
454454 run : apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
@@ -490,7 +490,7 @@ jobs:
490490 name : " 🐍 3 • ICC latest • x64"
491491
492492 steps :
493- - uses : actions/checkout@v2
493+ - uses : actions/checkout@v3
494494
495495 - name : Add apt repo
496496 run : |
@@ -593,7 +593,7 @@ jobs:
593593 container : " quay.io/centos/centos:${{ matrix.centos }}"
594594
595595 steps :
596- - uses : actions/checkout@v2
596+ - uses : actions/checkout@v3
597597
598598 - name : Add Python 3
599599 run : yum update -y && yum install -y python3-devel gcc-c++ make git
@@ -636,7 +636,7 @@ jobs:
636636 container : i386/debian:buster
637637
638638 steps :
639- - uses : actions/checkout@v1
639+ - uses : actions/checkout@v3
640640
641641 - name : Install requirements
642642 run : |
@@ -679,9 +679,9 @@ jobs:
679679 runs-on : ubuntu-latest
680680
681681 steps :
682- - uses : actions/checkout@v2
682+ - uses : actions/checkout@v3
683683
684- - uses : actions/setup-python@v2
684+ - uses : actions/setup-python@v3
685685
686686 - name : Install Doxygen
687687 run : sudo apt-get install -y doxygen librsvg2-bin # Changed to rsvg-convert in 20.04
@@ -726,10 +726,10 @@ jobs:
726726 runs-on : windows-2019
727727
728728 steps :
729- - uses : actions/checkout@v2
729+ - uses : actions/checkout@v3
730730
731731 - name : Setup Python ${{ matrix.python }}
732- uses : actions/setup-python@v2
732+ uses : actions/setup-python@v3
733733 with :
734734 python-version : ${{ matrix.python }}
735735 architecture : x86
@@ -779,10 +779,10 @@ jobs:
779779 runs-on : windows-2019
780780
781781 steps :
782- - uses : actions/checkout@v2
782+ - uses : actions/checkout@v3
783783
784784 - name : Setup Python ${{ matrix.python }}
785- uses : actions/setup-python@v2
785+ uses : actions/setup-python@v3
786786 with :
787787 python-version : ${{ matrix.python }}
788788 architecture : x86
@@ -827,10 +827,10 @@ jobs:
827827 runs-on : windows-2022
828828
829829 steps :
830- - uses : actions/checkout@v2
830+ - uses : actions/checkout@v3
831831
832832 - name : Setup Python ${{ matrix.python }}
833- uses : actions/setup-python@v2
833+ uses : actions/setup-python@v3
834834 with :
835835 python-version : ${{ matrix.python }}
836836
@@ -890,7 +890,7 @@ jobs:
890890 mingw-w64-${{matrix.env}}-boost
891891 mingw-w64-${{matrix.env}}-catch
892892
893- - uses : actions/checkout@v2
893+ - uses : actions/checkout@v3
894894
895895 - name : Configure C++11
896896 # LTO leads to many undefined reference like
0 commit comments