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 1 commit
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
6 changes: 3 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
run: |
# For bats-assert and friends
brew tap kaos/shell
rfay marked this conversation as resolved.
Show resolved Hide resolved
brew install bats-core bats-file bats-assert bats-support jq mkcert yq
brew install bats-core bats-file bats-assert bats-support jq mkcert yq >/dev/null 2>&1
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 2>&1

- 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 2>&1

- name: Download docker images
shell: bash
Expand Down