Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec

---

## [v2.4.5](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.4.5) - 2026-06-15

[_Compare with previous release_](https://github.com/ddev/github-action-add-on-test/compare/v2.4.4...v2.4.5)

### Changed

- Use `setup-sandbox: true` in Homebrew ([PR #66](https://github.com/ddev/github-action-add-on-test/pull/66))

---

## [v2.4.4](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.4.4) - 2026-06-11

[_Compare with previous release_](https://github.com/ddev/github-action-add-on-test/compare/v2.4.3...v2.4.4)
Expand Down
17 changes: 10 additions & 7 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,14 @@ inputs:
runs:
using: "composite"
steps:
- name: Set Homebrew env
shell: bash
run: echo "HOMEBREW_NO_SANDBOX_LINUX=1" >> $GITHUB_ENV

- uses: Homebrew/actions/setup-homebrew@f830e99d47c69efee99f1ddbf18a8e3144d1b93e # https://github.com/Homebrew/actions/commits/main/setup-homebrew/
- uses: Homebrew/actions/setup-homebrew@54f3c3de99e48b2646ca31230c9b6e9717dac4d4 # https://github.com/Homebrew/actions/commits/main/setup-homebrew/
with:
setup-sandbox: true

- name: Environment setup
shell: bash
run: |
brew trust bats-core/bats-core
brew install bats-core bats-core/bats-core/bats-assert bats-core/bats-core/bats-file bats-core/bats-core/bats-support jq mkcert yq >/dev/null
mkcert -install

Expand All @@ -71,12 +70,16 @@ runs:
- name: Use ddev stable
shell: bash
if: inputs.ddev_version == 'stable'
run: brew install ddev/ddev/ddev >/dev/null
run: |
brew trust ddev/ddev
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 >/dev/null
run: |
brew trust ddev/ddev
brew install --HEAD ddev/ddev/ddev >/dev/null

- name: Download docker images
shell: bash
Expand Down