Skip to content

Commit bc20a5f

Browse files
Use official Docker setup action (#218)
This commit substitutes the `douglascamata/setup-docker-macos-action` GitHub Action with the official `docker/setup-docker-action` which now supports Intel-based Mac OS Runners through `lima`.
1 parent 11b3320 commit bc20a5f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
with:
4646
node-version: "24"
4747
- name: "Install Docker (MacOS X)"
48-
uses: douglascamata/setup-docker-macos-action@v1
49-
with:
50-
colima-additional-options: '--mount /private/var/folders:w'
48+
uses: docker/setup-docker-action@v4
49+
env:
50+
LIMA_START_ARGS: '--vm-type=vz --mount-type=virtiofs --mount /private/var/folders:w'
5151
if: ${{ startsWith(matrix.on, 'macos-') }}
5252
- uses: docker/setup-qemu-action@v3
5353
if: ${{ startsWith(matrix.on, 'ubuntu-') }}
@@ -138,10 +138,10 @@ jobs:
138138
with:
139139
node-version: "24"
140140
- name: "Install Docker (MacOs X)"
141-
uses: douglascamata/setup-docker-macos-action@v1
141+
uses: docker/setup-docker-action@v4
142+
env:
143+
LIMA_START_ARGS: '--vm-type=vz --mount-type=virtiofs --mount /private/var/folders:w'
142144
if: ${{ startsWith(matrix.on, 'macos-') }}
143-
with:
144-
colima-additional-options: '--mount /private/var/folders:w'
145145
- uses: docker/setup-qemu-action@v3
146146
- name: "Start PostgreSQL Docker container"
147147
run: |

0 commit comments

Comments
 (0)