Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor: Quiet down the brew installs #35

Merged
merged 3 commits into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ runs:
shell: bash
run: |
# For bats-assert and friends
brew tap kaos/shell
brew install bats-core bats-file bats-assert bats-support jq mkcert yq
brew tap kaos/shell >/dev/null
brew install bats-core bats-file bats-assert bats-support jq mkcert yq >/dev/null
mkcert -install

- uses: actions/checkout@v4
Expand All @@ -80,12 +80,12 @@ runs:
- name: Use ddev stable
shell: bash
if: inputs.ddev_version == 'stable'
run: brew install ddev/ddev/ddev
run: brew install ddev/ddev/ddev >/dev/null

- name: Use ddev HEAD
shell: bash
if: inputs.ddev_version == 'HEAD'
run: brew install --HEAD ddev/ddev/ddev
run: brew install --HEAD ddev/ddev/ddev >/dev/null

- name: Download docker images
shell: bash
Expand Down