diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 068de3b9d..1444bde40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,11 @@ jobs: - name: Setup docker and docker-compose (missing on MacOS) if: runner.os == 'macos' run: | + # Workaround for https://github.com/actions/runner-images/issues/8104 + brew remove --ignore-dependencies qemu + curl -o ./qemu.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/dc0669eca9479e9eeb495397ba3a7480aaa45c2e/Formula/qemu.rb + brew install ./qemu.rb + brew install docker docker-compose # Link the Docker Compose v2 plugin so it's understood by the docker CLI diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c607bcfc..45b6089c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,6 +28,11 @@ jobs: - name: Setup docker and docker-compose (missing on MacOS) if: runner.os == 'macos' run: | + # Workaround for https://github.com/actions/runner-images/issues/8104 + brew remove --ignore-dependencies qemu + curl -o ./qemu.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/dc0669eca9479e9eeb495397ba3a7480aaa45c2e/Formula/qemu.rb + brew install ./qemu.rb + brew install docker docker-compose # Link the Docker Compose v2 plugin so it's understood by the docker CLI