From 8ee67b02290bea77a2db160031d3f0ab8ccfa79a Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Mon, 3 Oct 2022 09:44:20 +0200 Subject: [PATCH] Fix `brew: command not found` (actions/runner-images#6283) --- .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 ecf94b20..e1947559 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -219,7 +219,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install arduino-cli - run: brew update && brew install arduino-cli + run: curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh - name: Install core run: arduino-cli core install ${{ matrix.core }} - name: Install libraries