From 2f496c70d06a2954606eac43100de8660e18c9c5 Mon Sep 17 00:00:00 2001 From: sabine <6594573+sabine@users.noreply.github.com> Date: Fri, 10 May 2024 10:57:41 +0200 Subject: [PATCH] do brew update before installing openssl@3 to fix macos CI (#2420) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52fd51d662..def9ecd6cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: if: runner.os == 'Linux' - name: Install system dependencies (macOS) - run: brew install libev openssl@3 # Openssl is a workaround for https://github.com/ocaml/opam-repository/issues/19676 + run: brew update && brew reinstall libev openssl@3 # Openssl is a workaround for https://github.com/ocaml/opam-repository/issues/19676 if: runner.os == 'macOS' - name: Install opam dependencies