From 22d615202ab7bdf58f35c5a7dad18ad38b926792 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Fri, 2 Aug 2024 10:35:51 +0200 Subject: [PATCH] Use MacOS 13 in build workflow. For some reason in MacOS 14 the build fails because the `configure` script is unable to find the Jansson library, even thought it is correctly installed by `brew`. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0690e93d9d..64097faf52 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,7 +71,7 @@ jobs: run: make clean && make macosx-build: - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v2 - name: Install dependencies