From cf0a64dc097e44618cf5455022173797a8590e8e Mon Sep 17 00:00:00 2001 From: Leroy Hopson Date: Wed, 11 Jan 2023 08:32:58 +1300 Subject: [PATCH] Use non-specific version of CMake on macOS Although this results in a warning of multiple matches due to the existence of 3.23.2-macos-universal.dmg and 3.23.2-macos10.10-universal.dmg the setup-cmake action doesn't work if we try to specify a more specific version. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec3f6c0..dd3cdc6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -129,7 +129,7 @@ jobs: if: steps.cache-submodules.outputs.cache-hit != 'true' uses: jwlawson/actions-setup-cmake@v1 with: - cmake-version: "3.23.2${{ matrix.os == 'macos-12' && '-macos-universal.dmg' || '' }}" + cmake-version: '3.23.2' use-32bit: ${{ matrix.bits == 32 && matrix.os == 'windows-2022' }} - name: Build libuv if: steps.cache-submodules.outputs.cache-hit != 'true'