69
69
runs-on : ${{ matrix.runs-on }}
70
70
71
71
steps :
72
- - uses : actions/checkout@v3
72
+ - uses : actions/checkout@v4
73
73
74
74
- name : Setup Python ${{ matrix.python }}
75
75
uses : actions/setup-python@v4
@@ -205,7 +205,7 @@ jobs:
205
205
runs-on : ubuntu-20.04
206
206
207
207
steps :
208
- - uses : actions/checkout@v3
208
+ - uses : actions/checkout@v4
209
209
210
210
- name : Setup Python ${{ matrix.python-version }} (deadsnakes)
211
211
uses :
deadsnakes/[email protected]
@@ -310,7 +310,7 @@ jobs:
310
310
container : " silkeh/clang:${{ matrix.clang }}${{ matrix.container_suffix }}"
311
311
312
312
steps :
313
- - uses : actions/checkout@v3
313
+ - uses : actions/checkout@v4
314
314
315
315
- name : Add wget and python3
316
316
run : apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
@@ -344,7 +344,7 @@ jobs:
344
344
container : nvidia/cuda:12.2.0-devel-ubuntu22.04
345
345
346
346
steps :
347
- - uses : actions/checkout@v3
347
+ - uses : actions/checkout@v4
348
348
349
349
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
350
350
- name : Install 🐍 3
@@ -368,7 +368,7 @@ jobs:
368
368
# container: centos:8
369
369
#
370
370
# steps:
371
- # - uses: actions/checkout@v3
371
+ # - uses: actions/checkout@v4
372
372
#
373
373
# - name: Add Python 3 and a few requirements
374
374
# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
@@ -413,7 +413,7 @@ jobs:
413
413
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
414
414
DEBIAN_FRONTEND : ' noninteractive'
415
415
steps :
416
- - uses : actions/checkout@v3
416
+ - uses : actions/checkout@v4
417
417
418
418
- name : Add NVHPC Repo
419
419
run : |
@@ -475,7 +475,7 @@ jobs:
475
475
container : " gcc:${{ matrix.gcc }}"
476
476
477
477
steps :
478
- - uses : actions/checkout@v3
478
+ - uses : actions/checkout@v4
479
479
480
480
- name : Add Python 3
481
481
run : apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
@@ -535,7 +535,7 @@ jobs:
535
535
name : " 🐍 3 • ICC latest • x64"
536
536
537
537
steps :
538
- - uses : actions/checkout@v3
538
+ - uses : actions/checkout@v4
539
539
540
540
- name : Add apt repo
541
541
run : |
@@ -639,7 +639,13 @@ jobs:
639
639
container : " ${{ matrix.container }}"
640
640
641
641
steps :
642
- - uses : actions/checkout@v3
642
+ - name : Latest actions/checkout
643
+ uses : actions/checkout@v4
644
+ if : matrix.container != 'centos:7'
645
+
646
+ - name : Pin actions/checkout as required for centos:7
647
+ uses : actions/checkout@v3
648
+ if : matrix.container == 'centos:7'
643
649
644
650
- name : Add Python 3 (RHEL 7)
645
651
if : matrix.container == 'centos:7'
@@ -687,7 +693,7 @@ jobs:
687
693
container : i386/debian:buster
688
694
689
695
steps :
690
- - uses : actions/checkout@v1 # Required to run inside docker
696
+ - uses : actions/checkout@v1 # v1 is required to run inside docker
691
697
692
698
- name : Install requirements
693
699
run : |
@@ -730,7 +736,7 @@ jobs:
730
736
runs-on : ubuntu-latest
731
737
732
738
steps :
733
- - uses : actions/checkout@v3
739
+ - uses : actions/checkout@v4
734
740
735
741
- uses : actions/setup-python@v4
736
742
with :
@@ -782,7 +788,7 @@ jobs:
782
788
runs-on : windows-2019
783
789
784
790
steps :
785
- - uses : actions/checkout@v3
791
+ - uses : actions/checkout@v4
786
792
787
793
- name : Setup Python ${{ matrix.python }}
788
794
uses : actions/setup-python@v4
@@ -835,7 +841,7 @@ jobs:
835
841
runs-on : windows-2019
836
842
837
843
steps :
838
- - uses : actions/checkout@v3
844
+ - uses : actions/checkout@v4
839
845
840
846
- name : Setup Python ${{ matrix.python }}
841
847
uses : actions/setup-python@v4
@@ -883,7 +889,7 @@ jobs:
883
889
runs-on : windows-2022
884
890
885
891
steps :
886
- - uses : actions/checkout@v3
892
+ - uses : actions/checkout@v4
887
893
888
894
- name : Setup Python ${{ matrix.python }}
889
895
uses : actions/setup-python@v4
@@ -961,7 +967,7 @@ jobs:
961
967
mingw-w64-${{matrix.env}}-boost
962
968
mingw-w64-${{matrix.env}}-catch
963
969
964
- - uses : actions/checkout@v3
970
+ - uses : actions/checkout@v4
965
971
966
972
- name : Configure C++11
967
973
# LTO leads to many undefined reference like
@@ -1032,7 +1038,7 @@ jobs:
1032
1038
run : env
1033
1039
1034
1040
- name : Checkout
1035
- uses : actions/checkout@v3
1041
+ uses : actions/checkout@v4
1036
1042
1037
1043
- name : Set up Clang
1038
1044
uses : egor-tensin/setup-clang@v1
@@ -1101,7 +1107,7 @@ jobs:
1101
1107
run : env
1102
1108
1103
1109
- name : Checkout
1104
- uses : actions/checkout@v3
1110
+ uses : actions/checkout@v4
1105
1111
1106
1112
- name : Show Clang++ version before brew install llvm
1107
1113
run : clang++ --version
0 commit comments