From d5890d4bcade24596dbf04c87cb9a642a2fdef9c Mon Sep 17 00:00:00 2001 From: Tarun Tak Date: Mon, 5 Jan 2026 08:47:22 +0000 Subject: [PATCH 1/4] fix: update macOS image to latest and simplify colima start command --- .github/workflows/cli-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli-tests.yml b/.github/workflows/cli-tests.yml index 6ec2ace..8cbb7cd 100644 --- a/.github/workflows/cli-tests.yml +++ b/.github/workflows/cli-tests.yml @@ -25,7 +25,7 @@ jobs: - name: linux image: ubuntu-24.04 - name: mac - image: macos-13 + image: macos-latest python-version: - '3.11' fail-fast: false @@ -55,7 +55,7 @@ jobs: if: ${{ matrix.os.name == 'mac' }} run: | brew install colima docker docker-compose - colima start -a vz -m 8 -r docker + colima start -m 8 echo "DOCKER_HOST=unix://${HOME}/.colima/docker.sock" >> $GITHUB_ENV mkdir -p ~/.docker/cli-plugins ln -sfn /usr/local/bin/docker-compose ~/.docker/cli-plugins/docker-compose From 1d22f399b86ccc0c97699baad38c8376927eabba Mon Sep 17 00:00:00 2001 From: Tarun Tak Date: Mon, 5 Jan 2026 08:52:37 +0000 Subject: [PATCH 2/4] fix: update colima start command to use qemu and specify memory allocation --- .github/workflows/cli-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli-tests.yml b/.github/workflows/cli-tests.yml index 8cbb7cd..31f32f6 100644 --- a/.github/workflows/cli-tests.yml +++ b/.github/workflows/cli-tests.yml @@ -55,7 +55,7 @@ jobs: if: ${{ matrix.os.name == 'mac' }} run: | brew install colima docker docker-compose - colima start -m 8 + colima start --vm-type qemu --memory 8 echo "DOCKER_HOST=unix://${HOME}/.colima/docker.sock" >> $GITHUB_ENV mkdir -p ~/.docker/cli-plugins ln -sfn /usr/local/bin/docker-compose ~/.docker/cli-plugins/docker-compose From f0286aca5621a74bc98c6b74230a8b58ea13b5ee Mon Sep 17 00:00:00 2001 From: Tarun Tak Date: Mon, 5 Jan 2026 08:55:29 +0000 Subject: [PATCH 3/4] fix: update Mac Docker installation to include qemu --- .github/workflows/cli-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli-tests.yml b/.github/workflows/cli-tests.yml index 31f32f6..1e9cfb4 100644 --- a/.github/workflows/cli-tests.yml +++ b/.github/workflows/cli-tests.yml @@ -54,7 +54,7 @@ jobs: - name: Docker installation - Mac if: ${{ matrix.os.name == 'mac' }} run: | - brew install colima docker docker-compose + brew install qemu colima docker docker-compose colima start --vm-type qemu --memory 8 echo "DOCKER_HOST=unix://${HOME}/.colima/docker.sock" >> $GITHUB_ENV mkdir -p ~/.docker/cli-plugins From b432a2ac29b2c6d577171333e6f5790b7943574d Mon Sep 17 00:00:00 2001 From: Tarun Tak Date: Mon, 5 Jan 2026 09:01:10 +0000 Subject: [PATCH 4/4] fix: update macOS image in CI workflow and simplify colima start command --- .github/workflows/cli-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cli-tests.yml b/.github/workflows/cli-tests.yml index 1e9cfb4..0d4c90e 100644 --- a/.github/workflows/cli-tests.yml +++ b/.github/workflows/cli-tests.yml @@ -25,7 +25,7 @@ jobs: - name: linux image: ubuntu-24.04 - name: mac - image: macos-latest + image: macos-15 python-version: - '3.11' fail-fast: false @@ -54,8 +54,8 @@ jobs: - name: Docker installation - Mac if: ${{ matrix.os.name == 'mac' }} run: | - brew install qemu colima docker docker-compose - colima start --vm-type qemu --memory 8 + brew install colima docker docker-compose + colima start --memory 8 echo "DOCKER_HOST=unix://${HOME}/.colima/docker.sock" >> $GITHUB_ENV mkdir -p ~/.docker/cli-plugins ln -sfn /usr/local/bin/docker-compose ~/.docker/cli-plugins/docker-compose