From 04b682aac613af598ff34470f9192acf52f9ead6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 20:49:01 +0700 Subject: [PATCH] chore: bump threeal/cmake-action from 1.3.0 to 2.0.0 (#174) Bumps [threeal/cmake-action](https://github.com/threeal/cmake-action) from 1.3.0 to 2.0.0. - [Release notes](https://github.com/threeal/cmake-action/releases) - [Commits](https://github.com/threeal/cmake-action/compare/v1.3.0...v2.0.0) --- updated-dependencies: - dependency-name: threeal/cmake-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alfi Maulana --- .github/workflows/build.yaml | 4 +++- .github/workflows/check.yaml | 3 ++- .github/workflows/test.yaml | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9e6854d..84f4286 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,7 +17,9 @@ jobs: uses: actions/checkout@v4.1.7 - name: Configure Project - uses: threeal/cmake-action@v1.3.0 + uses: threeal/cmake-action@v2.0.0 + with: + run-build: false - name: Build Project run: cmake --build build --config Release diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 47803b8..f68a290 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -13,9 +13,10 @@ jobs: uses: actions/checkout@v4.1.7 - name: Configure Project - uses: threeal/cmake-action@v1.3.0 + uses: threeal/cmake-action@v2.0.0 with: options: MY_FIBONACCI_ENABLE_TESTS=ON + run-build: false - name: Check Formatting run: | diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ed0c50b..a6f5b68 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,9 +17,10 @@ jobs: uses: actions/checkout@v4.1.7 - name: Configure Project - uses: threeal/cmake-action@v1.3.0 + uses: threeal/cmake-action@v2.0.0 with: options: MY_FIBONACCI_ENABLE_TESTS=ON + run-build: false - name: Build Project run: cmake --build build