Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.7.3"}
{".":"2.0.0"}
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [2.0.0](https://github.com/mage-os/github-actions/compare/v1.7.3...v2.0.0) (2026-05-14)


### ⚠ BREAKING CHANGES

* **setup-magento:** Previously, when using setup-magento in extension mode, the magento 2 repo root was ../magento2 (outside of the extension folder). Due to interactions with `cache-magento` we need to keep magento inside the GITHUB_WORKSPACE (the root repo). We now do this in the `_ghamagento` folder. If you rely on the `steps.setup-magento.outputs.path` nothing changes for you. But, if you hardcoded the path, it's likely broken.
* **coding-standard:** simplify action architecture ([#342](https://github.com/mage-os/github-actions/issues/342))
* **supported-version:** bump node runtime to v24 ([#323](https://github.com/mage-os/github-actions/issues/323))

### Features

* **coding-standard:** simplify action architecture ([#342](https://github.com/mage-os/github-actions/issues/342)) ([bc96953](https://github.com/mage-os/github-actions/commit/bc969536f15f610aba956bd5b42b5d858eb1ca72))
* **integration:** compute services from matrix ([#354](https://github.com/mage-os/github-actions/issues/354)) ([7c8ffc3](https://github.com/mage-os/github-actions/commit/7c8ffc399d5063e3f6e68195b0a8092a2bb0a520))
* **setup-install:** create new action ([#349](https://github.com/mage-os/github-actions/issues/349)) ([efc18f2](https://github.com/mage-os/github-actions/commit/efc18f226172ee2189696810a4eec5849f6c02e1))
* **setup-magento:** add composer_auth support ([#357](https://github.com/mage-os/github-actions/issues/357)) ([ce7a25a](https://github.com/mage-os/github-actions/commit/ce7a25a762b111aa7586a3f9c5de99bb558510fe))
* **setup-magento:** align with upstream defaults ([#355](https://github.com/mage-os/github-actions/issues/355)) ([6e58a15](https://github.com/mage-os/github-actions/commit/6e58a15b0e7e5c9143e450a53104b1f41b7701c7))
* **setup-magento:** change extension working dir to _ghamagento ([#367](https://github.com/mage-os/github-actions/issues/367)) ([f9f4ef4](https://github.com/mage-os/github-actions/commit/f9f4ef4b0b38fd0044568d20670626395a1d0893))
* **setup-magento:** mkdir app/etc to allow prevent composer plugin crashing ([#368](https://github.com/mage-os/github-actions/issues/368)) ([f54dcc5](https://github.com/mage-os/github-actions/commit/f54dcc597c4ad781a7bb4ad7f815e0f71b258d4b))
* **supported-version:** add recent kind ([#321](https://github.com/mage-os/github-actions/issues/321)) ([e2494ac](https://github.com/mage-os/github-actions/commit/e2494acd7923a39387a0f390caf71e9d8865a2e7))
* **supported-version:** add services configuration ([#353](https://github.com/mage-os/github-actions/issues/353)) ([bf803e8](https://github.com/mage-os/github-actions/commit/bf803e8f7f06b3cddbd33893f4b5f94613f3e097))
* **supported-version:** bump node runtime to v24 ([#323](https://github.com/mage-os/github-actions/issues/323)) ([2189663](https://github.com/mage-os/github-actions/commit/2189663060a881cb7369de054ab9e2d41e2bf377))
* **supported-version:** revise v2.4.6-p14 eol for adjustments from adobe ([#325](https://github.com/mage-os/github-actions/issues/325)) ([378ec1b](https://github.com/mage-os/github-actions/commit/378ec1b16af3658a0581bb9521002d5142e51ac4))


### Bug Fixes

* **cache-magento:** address `set-output` deprecation ([#231](https://github.com/mage-os/github-actions/issues/231)) ([#326](https://github.com/mage-os/github-actions/issues/326)) ([2edb83e](https://github.com/mage-os/github-actions/commit/2edb83ea12a621ed98d44f8685431001060c6b6d))
* **supported-version:** bump pinned Composer versions for GHSA-f9f8-rm49-7jv2 ([#362](https://github.com/mage-os/github-actions/issues/362)) ([603ebb6](https://github.com/mage-os/github-actions/commit/603ebb6a6d4731199dd1000aa890f5371c9cab2a))
* **supported-version:** filter uninstallable versions from usable kind ([#319](https://github.com/mage-os/github-actions/issues/319)) ([0590231](https://github.com/mage-os/github-actions/commit/0590231b6df72fcb90092721c14d45f9a073b5fd))

## [1.7.3](https://github.com/mage-os/github-actions/compare/v1.7.2...v1.7.3) (2025-12-30)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mage-os/github-actions",
"version": "1.7.3",
"version": "2.0.0",
"description": "Github Actions for Magento 2",
"scripts": {
"test": "cd supported-version && npm run test && cd - && cd setup-install && npm run test && cd -",
Expand Down
Loading