Skip to content

Commit 6226383

Browse files
committed
Updated actions/checkout in CI to v3.
1 parent 69100ec commit 6226383

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci_linux_clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
enable_sanitizers_in_tests: ON
7777
}
7878
steps:
79-
- uses: actions/checkout@v2
79+
- uses: actions/checkout@v3
8080
- name: Build project
8181
env:
8282
CC: ${{ matrix.config.cc }}

.github/workflows/ci_linux_gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
enable_sanitizers_in_tests: ON
7171
}
7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v3
7474
- name: Build project
7575
env:
7676
CC: ${{ matrix.config.cc }}

.github/workflows/ci_windows_msvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
cxx_standard: 20
5757
}
5858
steps:
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v3
6060
- name: Build project
6161
run: |
6262
cmake -S . -B build \

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Install LCOV
1616
run: sudo apt install -y lcov
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Build project
1919
env:
2020
CC: gcc-9

0 commit comments

Comments
 (0)