summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2021-04-12 10:15:16 -0700
committerGitHub <noreply@github.com>2021-04-12 12:15:16 -0500
commiteead4c73cf785250f45585c2ee786c273df59542 (patch)
tree1106ae33875acca251c0c7fda25f50e334612365 /.github/workflows
parentf87f038c5f0821d0fefb01cea00bfdec6004da91 (diff)
Fix GitHub Actions macOS build (#6331)
The build is currently failing because it tries to download an older version of the ccache package. This commit makes sure that Homebrew is up-to-date before trying to install packages.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8925b06d9..6d22f9f11 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -88,6 +88,7 @@ jobs:
- name: Install Packages (macOS)
if: runner.os == 'macOS'
run: |
+ brew update
brew install \
ccache \
cln \
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback