From e3d9bf11a44028698bcde5d9f3890b2ae3542828 Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Sat, 26 Nov 2022 13:39:02 +0100 Subject: [PATCH] Fix windows build The default cmake version used on the Windows runner was unable to configure OpenCV --- .github/actions/build-plugin/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/build-plugin/action.yml b/.github/actions/build-plugin/action.yml index b0e07fb4..9d4643a5 100644 --- a/.github/actions/build-plugin/action.yml +++ b/.github/actions/build-plugin/action.yml @@ -31,6 +31,10 @@ inputs: runs: using: 'composite' steps: + - name: Setup cmake + uses: jwlawson/actions-setup-cmake@v1.13 + with: + cmake-version: '3.24.x' - name: Run macOS Build if: ${{ runner.os == 'macOS' }} shell: zsh {0}