Skip to content

Commit

Permalink
ci/cd: install buildx to fix deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
undergroundwires committed Mar 21, 2024
1 parent 8f49797 commit c70807e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/checks.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ jobs:
uses: actions/checkout@v4
-
name: Install Docker on macOS
if: matrix.os == 'macos' # macOS runner is missing Docker
if: matrix.os == 'macos' # macOS runner is missing Docker (see actions/runner-images#17)
run: |-
# Install Docker
brew install docker
# Docker on macOS misses daemon due to licensing, so install colima as runtime
brew install colima
# Install `buildx` (`docker build` without `buildx` is deprecated)
brew install docker-buildx
# Start the daemon
colima start
-
Expand Down

0 comments on commit c70807e

Please sign in to comment.