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
4 changes: 2 additions & 2 deletions .github/workflows/add-on-disable-checkout-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

steps:
- name: Clone current repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ env.ADD_ON }}
ref: ${{ env.ADD_ON_REF }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-ons-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

steps:
- name: Clone current repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Retrieve last tag of add-on
id: last_tag
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/doc-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone sources
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: sources

- name: Lauch localhost server
- name: Launch localhost server
run: |
sudo npm install --global http-server
http-server ./sources &
Expand All @@ -36,5 +36,5 @@ jobs:
run: |
gem install awesome_bot
cd sources
awesome_bot README.md --skip-save-results --allow-dupe --base-url http://localhost:8080/ --white-list ddev.site
awesome_bot docs/*.md --skip-save-results --allow-dupe --base-url http://localhost:8080/docs/ --white-list ddev.site
awesome_bot README.md --skip-save-results --allow-dupe --base-url http://localhost:8080/ --white-list ddev.site --allow 429
awesome_bot docs/*.md --skip-save-results --allow-dupe --base-url http://localhost:8080/docs/ --white-list ddev.site --allow 429
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
tag_name:
description: Tag name
description: Tag name with v prefix
type: string
required: true

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
echo "major_tag=$(echo ${{ steps.set-version-number.outputs.version_number }} | cut -d. -f1)" >> $GITHUB_OUTPUT

- name: Clone sources
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check version consistency in CHANGELOG and README
run: |
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,27 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec

---

## [v2.4.0](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.4.0) - 2026-03-09

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

### Changed

- Use SHA commit IDs in action.yaml ([PR #56](https://github.com/ddev/github-action-add-on-test/pull/56))

---


## [v2.3.3](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.3.3) - 2025-07-26

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

### Fixed

- Fix `kaos/homebrew-shell` failure

---

## [v2.3.2](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.3.2) - 2025-04-22

[_Compare with previous release_](https://github.com/ddev/github-action-add-on-test/compare/v2.3.1...v2.3.2)
Expand All @@ -19,6 +40,7 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec

- Synchronize the major tag with the correct commit

---

## [v2.3.1](https://github.com/ddev/github-action-add-on-test/releases/tag/v2.3.1) - 2025-04-22

Expand Down