Skip to content

Commit

Permalink
Update GHA workflows to use cpp-actions v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cmazakas committed Dec 11, 2023
1 parent 4f53640 commit dafa29e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
matrix: ${{ steps.cpp-matrix.outputs.matrix }}
steps:
- name: Generate Test Matrix
uses: cmazakas/cpp-actions/cpp-matrix@899c4275c0a330e40ce41ab5d9ef5821db4482b6
uses: alandefreitas/cpp-actions/cpp-matrix@v1.6.1
id: cpp-matrix
with:
compilers: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup C++
uses: cmazakas/cpp-actions/setup-cpp@899c4275c0a330e40ce41ab5d9ef5821db4482b6
uses: alandefreitas/cpp-actions/setup-cpp@v1.6.1
id: setup-cpp
with:
compiler: ${{ matrix.compiler }}
Expand All @@ -102,13 +102,13 @@ jobs:
trace-commands: true

- name: Install packages
uses: alandefreitas/cpp-actions/package-install@v1.5.0
uses: alandefreitas/cpp-actions/package-install@v1.6.1
id: package-install
with:
apt-get: ${{ matrix.install }}

- name: Clone Boost
uses: cmazakas/cpp-actions/boost-clone@899c4275c0a330e40ce41ab5d9ef5821db4482b6
uses: alandefreitas/cpp-actions/boost-clone@v1.6.1
id: boost-clone
with:
branch: ${{ (github.ref_name == 'master' && github.ref_name) || 'develop' }}
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
cp -r "$workspace_root"/* "libs/$module"
- name: Boost CMake Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.5.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.6.1
with:
source-dir: ../boost-root
build-dir: __build_cmake_test__
Expand All @@ -173,7 +173,7 @@ jobs:
ref-source-dir: ../boost-root/libs/buffers

- name: Subdirectory Integration Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.5.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.6.1
with:
source-dir: ../boost-root/libs/${{ steps.patch.outputs.module }}/test/cmake_test
build-dir: __build_cmake_subdir_test__
Expand All @@ -195,7 +195,7 @@ jobs:
run: echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH

- name: Find Package Integration Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.5.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.6.1
with:
source-dir: ../boost-root/libs/${{ steps.patch.outputs.module }}/test/cmake_test
build-dir: __build_cmake_install_test__
Expand All @@ -213,7 +213,7 @@ jobs:
ref-source-dir: ../boost-root/libs/buffers/test/cmake_test

- name: Root Project CMake Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.5.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.6.1
with:
source-dir: ../boost-root/libs/${{ steps.patch.outputs.module }}
build-dir: __build_root_test__
Expand All @@ -235,7 +235,7 @@ jobs:
ref-source-dir: .

- name: Boost B2 Workflow
uses: alandefreitas/cpp-actions/b2-workflow@v1.5.0
uses: alandefreitas/cpp-actions/b2-workflow@v1.6.1
with:
source-dir: ../boost-root
modules: buffers
Expand All @@ -250,7 +250,7 @@ jobs:
shared: ${{ matrix.shared }}

- name: FlameGraph
uses: alandefreitas/cpp-actions/flamegraph@v1.5.0
uses: alandefreitas/cpp-actions/flamegraph@v1.6.1
if: matrix.time-trace
with:
source-dir: ../boost-root/libs/buffers
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
fetch-depth: 100

- name: Changelog
uses: alandefreitas/cpp-actions/create-changelog@v1.5.0
uses: alandefreitas/cpp-actions/create-changelog@v1.6.1
with:
thank-non-regular: ${{ startsWith(github.ref, 'refs/tags/') }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit dafa29e

Please sign in to comment.