Skip to content

Commit 36a3b51

Browse files
committed
ci: update actions to v1.9.1
1 parent 7b2103a commit 36a3b51

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/checkout@v4
4545

4646
- name: Generate Test Matrix
47-
uses: alandefreitas/cpp-actions/cpp-matrix@v1.8.12
47+
uses: alandefreitas/cpp-actions/cpp-matrix@v1.9.1
4848
id: cpp-matrix
4949
with:
5050
compilers: |
@@ -157,7 +157,7 @@ jobs:
157157
# We need git to ensure actions/checkout@v4 will use git and
158158
# for the next steps that need to clone repositories
159159
- name: Install Git
160-
uses: alandefreitas/cpp-actions/package-install@v1.8.12
160+
uses: alandefreitas/cpp-actions/package-install@v1.9.1
161161
if: matrix.container != ''
162162
env:
163163
DEBIAN_FRONTEND: 'noninteractive'
@@ -174,7 +174,7 @@ jobs:
174174
uses: actions/checkout@v4
175175

176176
- name: Setup CMake
177-
uses: alandefreitas/cpp-actions/setup-cmake@v1.8.7
177+
uses: alandefreitas/cpp-actions/setup-cmake@v1.9.1
178178
id: setup-cmake
179179
with:
180180
version: '>=3.26'
@@ -186,7 +186,7 @@ jobs:
186186
uses: seanmiddleditch/gha-setup-ninja@v5
187187

188188
- name: Setup C++
189-
uses: alandefreitas/cpp-actions/setup-cpp@v1.8.12
189+
uses: alandefreitas/cpp-actions/setup-cpp@v1.9.1
190190
id: setup-cpp
191191
with:
192192
compiler: ${{ matrix.compiler }}
@@ -260,7 +260,7 @@ jobs:
260260
${{ steps.setup-cpp.outputs.cxx }} --print-target-triple
261261
262262
- name: Install System Packages
263-
uses: alandefreitas/cpp-actions/package-install@v1.8.12
263+
uses: alandefreitas/cpp-actions/package-install@v1.9.1
264264
if: matrix.compiler != 'msvc'
265265
id: package-install
266266
env:
@@ -357,7 +357,7 @@ jobs:
357357
358358
- name: Install libc++
359359
id: install_libcxx
360-
uses: alandefreitas/cpp-actions/cmake-workflow@v1.8.12
360+
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.1
361361
if: matrix.use-libcxx == 'true' && steps.llvm-cache.outputs.cache-hit != 'true'
362362
with:
363363
cmake-version: '>=3.26'
@@ -391,7 +391,7 @@ jobs:
391391
# This is controlled by the llvm-runtimes matrix variable.
392392
- name: Install LLVM
393393
id: install_llvm
394-
uses: alandefreitas/cpp-actions/cmake-workflow@v1.8.12
394+
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.1
395395
if: steps.llvm-cache.outputs.cache-hit != 'true'
396396
with:
397397
cmake-version: '>=3.26'
@@ -449,7 +449,7 @@ jobs:
449449
trace-commands: true
450450

451451
- name: Install Lua
452-
uses: alandefreitas/cpp-actions/cmake-workflow@v1.8.12
452+
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.1
453453
with:
454454
source-dir: ../third-party/lua
455455
url: https://github.com/lua/lua/archive/refs/tags/v5.4.8.tar.gz
@@ -469,7 +469,7 @@ jobs:
469469
trace-commands: true
470470

471471
- name: Install Libxml2
472-
uses: alandefreitas/cpp-actions/cmake-workflow@v1.8.12
472+
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.1
473473
if: matrix.compiler == 'msvc'
474474
with:
475475
source-dir: ../third-party/libxml2
@@ -528,7 +528,7 @@ jobs:
528528
node-version: '20'
529529

530530
- name: CMake Workflow
531-
uses: alandefreitas/cpp-actions/cmake-workflow@v1.8.12
531+
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.1
532532
env:
533533
# Bump per-test timeout on Windows and for MSan jobs to avoid CTest default (1500s) killing slow golden suites.
534534
CTEST_TEST_TIMEOUT: ${{ (runner.os == 'Windows' || matrix.msan == 'true') && '3600' || '' }}
@@ -645,7 +645,7 @@ jobs:
645645
retention-days: 1
646646

647647
- name: FlameGraph
648-
uses: alandefreitas/cpp-actions/flamegraph@v1.8.12
648+
uses: alandefreitas/cpp-actions/flamegraph@v1.9.1
649649
if: matrix.time-trace
650650
with:
651651
build-dir: build
@@ -721,7 +721,7 @@ jobs:
721721
fi
722722
723723
- name: Install packages
724-
uses: alandefreitas/cpp-actions/package-install@v1.8.12
724+
uses: alandefreitas/cpp-actions/package-install@v1.9.1
725725
id: package-install
726726
with:
727727
apt-get: build-essential asciidoctor cmake bzip2 git rsync
@@ -746,7 +746,7 @@ jobs:
746746
if: ${{ runner.os == 'Windows' }}
747747

748748
- name: Setup C++
749-
uses: alandefreitas/cpp-actions/setup-cpp@v1.8.12
749+
uses: alandefreitas/cpp-actions/setup-cpp@v1.9.1
750750
id: setup-cpp
751751
with:
752752
compiler: ${{ matrix.compiler }}
@@ -790,7 +790,7 @@ jobs:
790790
$MRDOCS_ROOT/bin/mrdocs --version
791791
792792
- name: Clone Boost.URL
793-
uses: alandefreitas/cpp-actions/boost-clone@v1.8.12
793+
uses: alandefreitas/cpp-actions/boost-clone@v1.9.1
794794
id: boost-url-clone
795795
with:
796796
branch: develop
@@ -1147,7 +1147,7 @@ jobs:
11471147
time rsync "${rsyncopts[@]}" $(pwd)/demos/ "$demo_dir"/
11481148
11491149
- name: Create changelog
1150-
uses: alandefreitas/cpp-actions/create-changelog@v1.8.12
1150+
uses: alandefreitas/cpp-actions/create-changelog@v1.9.1
11511151
with:
11521152
output-path: CHANGELOG.md
11531153
thank-non-regular: ${{ startsWith(github.ref, 'refs/tags/') }}
@@ -1215,7 +1215,7 @@ jobs:
12151215
echo "llvm-path=$llvm_path" >> $GITHUB_OUTPUT
12161216
12171217
- name: Install packages
1218-
uses: alandefreitas/cpp-actions/package-install@v1.8.12
1218+
uses: alandefreitas/cpp-actions/package-install@v1.9.1
12191219
id: package-install
12201220
with:
12211221
apt-get: ${{ matrix.install }}

0 commit comments

Comments
 (0)