diff options
author | Sadie Powell <sadie@witchery.services> | 2020-02-15 03:53:16 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-02-15 04:30:28 +0000 |
commit | a018818635ab72618c42a751ecd5fb02a1cdcda0 (patch) | |
tree | 286c6625ba421a23133ccd0b8ac610edb13d04db /.github/workflows | |
parent | 45d5e5c7526a00784d2366bd1a2ca7d0c5384027 (diff) |
GitHub Actions: ensure that all packages are up to date on macOS.
This ensures that Homebrew does not explode when installing new
packages because thats apparently a challenge for it.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-macos.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 4521fea31..529f5dea8 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -15,6 +15,7 @@ jobs: - name: Install dependencies run: | brew update + brew upgrade brew install pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite3 tre brew link --force --overwrite libpq brew link --force --overwrite mysql-client |