Skip to content

Commit 99587dd

Browse files
authored
Merge pull request #1289 from AntoinePrv/update-ci
Update CI actions
2 parents a1efb29 + 3898c40 commit 99587dd

18 files changed

+21
-21
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- 18
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v6
2222

2323
- name: Build script
2424
env:

.github/workflows/arch-consistency-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout xsimd
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v6
1212
- name: Install dependencies
1313
run: sudo apt install g++
1414
- name: Check architecture consistency

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v6
1111
- name: Setup
1212
run: cmake -B _build -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release
1313
- name: Build

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout xsimd
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v6
1515
- name: Configure build
1616
run: cmake -B _build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=_install
1717
- name: Build

.github/workflows/cross-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
sudo apt-get install ninja-build
3434
- name: Checkout xsimd
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v6
3636
- name: Setup
3737
run: |
3838
cmake -B _build \

.github/workflows/cross-ppc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
sudo apt-get install ninja-build
3333
- name: Checkout xsimd
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v6
3535
- name: Setup
3636
run: |
3737
cmake -B _build \

.github/workflows/cross-rvv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
sudo apt-get -y -qq install ninja-build
4444
- name: Checkout xsimd
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v6
4646
- name: Setup
4747
run: >
4848
cmake -S . -B _build

.github/workflows/cross-sve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
sudo apt-get install ninja-build
2929
- name: Checkout xsimd
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v6
3131
- name: Setup
3232
run: |
3333
cmake -B _build \

.github/workflows/cxx-no-exceptions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
7+
- uses: actions/checkout@v6
88
- name: Setup
99
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fno-exceptions
1010
- name: Build

.github/workflows/cxx-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
matrix:
1111
cxx-version: [14, 17, 20]
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v6
1414
- name: Setup
1515
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{matrix.cxx-version}}
1616
- name: Build

0 commit comments

Comments
 (0)