diff --git a/CHANGELOG.md b/CHANGELOG.md index 694fe21..09b6d51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +### Fixed + +- Run `brew update` without `--preinstall`, as it was removed from Homebrew since a while and 4.4.16 started rejecting it. ([#45](https://github.com/douglascamata/setup-docker-macos-action/pull/45)) + ## [v1-alpha.15] - 2024-11-27 ### Added diff --git a/action.yml b/action.yml index 368ed98..d1aaa89 100644 --- a/action.yml +++ b/action.yml @@ -49,7 +49,7 @@ runs: - name: Update Homebrew run: | echo "::group::Updating Homebrew" - brew update --preinstall + brew update echo "::endgroup::" shell: bash - name: Install Lima