From 038dacab8bd97b5ab9a9c3150e4a45226ab00387 Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Sat, 4 Apr 2026 18:48:36 -0600 Subject: [PATCH 1/4] fix: Work around github warnings about nodejs 20 with homebrew installer --- action.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yaml b/action.yaml index db0a736..2329504 100644 --- a/action.yaml +++ b/action.yaml @@ -2,6 +2,10 @@ name: "DDEV add-on test" author: "Julien Loizelet" description: "A Github Action to run DDEV add-on tests" +env: + # Work around homebrew install trying to use deprecated node 20 + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' + inputs: ddev_version: type: choice From dd9f61bacc838859e829cac3dfb3ac66491a42c5 Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Sat, 4 Apr 2026 18:56:38 -0600 Subject: [PATCH 2/4] Try to solve link check problem on github links with GITHUB_TOKEN --- .github/workflows/doc-links.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/doc-links.yml b/.github/workflows/doc-links.yml index 5006772..b474c7b 100644 --- a/.github/workflows/doc-links.yml +++ b/.github/workflows/doc-links.yml @@ -9,6 +9,9 @@ on: branches: - main +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + permissions: contents: read From d67c856d51543d5054aad5a17f8645bcadcbe4a9 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Mon, 6 Apr 2026 19:38:56 +0300 Subject: [PATCH 3/4] bump homebrew action instead --- action.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/action.yaml b/action.yaml index 2329504..592f6a8 100644 --- a/action.yaml +++ b/action.yaml @@ -2,10 +2,6 @@ name: "DDEV add-on test" author: "Julien Loizelet" description: "A Github Action to run DDEV add-on tests" -env: - # Work around homebrew install trying to use deprecated node 20 - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' - inputs: ddev_version: type: choice @@ -53,7 +49,7 @@ inputs: runs: using: "composite" steps: - - uses: Homebrew/actions/setup-homebrew@4cdec6dc3e14702214632b392c91a7cc283fbc8a #no release tags available + - uses: Homebrew/actions/setup-homebrew@675fcd27b59e54d310c5484c8c27c01d03da660c #no release tags available - name: Environment setup shell: bash From 3c1d5ab13d796dabe2d9ef8f92daf00d4ecc389c Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Mon, 6 Apr 2026 19:41:22 +0300 Subject: [PATCH 4/4] update changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aadbdf..d4f3fab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,18 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec --- +## [v2.4.2](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.4.2) - 2026-03-12 + +[_Compare with previous release_](https://github.com/ddev/github-action-add-on-test/compare/v2.4.1...v2.4.2) + +### Changed + +- Bump Homebrew/actions/setup-homebrew ([PR #60](https://github.com/ddev/github-action-add-on-test/pull/60)) + +--- + +--- + ## [v2.4.1](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.4.1) - 2026-03-12 [_Compare with previous release_](https://github.com/ddev/github-action-add-on-test/compare/v2.4.0...v2.4.1)