diff --git a/.github/workflows/check-extension.yaml b/.github/workflows/check-extension.yaml index 8166644..d0bb2ac 100644 --- a/.github/workflows/check-extension.yaml +++ b/.github/workflows/check-extension.yaml @@ -44,7 +44,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.0-rc.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -54,7 +54,7 @@ jobs: magento_repository: ${{ inputs.magento_repository }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v7.0.0-rc.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} @@ -104,7 +104,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.0-rc.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -114,7 +114,7 @@ jobs: magento_repository: ${{ inputs.magento_repository }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v7.0.0-rc.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} @@ -161,7 +161,7 @@ jobs: tools: composer:v${{ matrix.composer }} coverage: none - - uses: graycoreio/github-actions-magento2/coding-standard@main + - uses: graycoreio/github-actions-magento2/coding-standard@v7.0.0-rc.0 with: path: ${{ inputs.path }} composer_auth: ${{ secrets.composer_auth }} @@ -175,7 +175,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.0-rc.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -185,7 +185,7 @@ jobs: magento_repository: ${{ inputs.magento_repository }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v7.0.0-rc.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} @@ -210,7 +210,7 @@ jobs: COMPOSER_AUTH: ${{ secrets.composer_auth }} COMPOSER_MIRROR_PATH_REPOS: 1 - - uses: graycoreio/github-actions-magento2/get-magento-version@main + - uses: graycoreio/github-actions-magento2/get-magento-version@v7.0.0-rc.0 id: magento-version with: working-directory: ${{ steps.setup-magento.outputs.path }} diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 22a5629..d2f111a 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -82,7 +82,7 @@ jobs: COMPOSER_AUTH: ${{ secrets.composer_auth }} name: Create Magento ${{ matrix.magento }} Project - - uses: graycoreio/github-actions-magento2/get-magento-version@main + - uses: graycoreio/github-actions-magento2/get-magento-version@v7.0.0-rc.0 id: magento-version with: working-directory: ${{ inputs.magento_directory }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index db6cca7..b448c02 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"6.0.0"} +{".":"7.0.0-rc.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9ac16..81c9425 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,38 @@ 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. +## [7.0.0-rc.0](https://github.com/graycoreio/github-actions-magento2/compare/v6.0.0...v7.0.0-rc.0) (2026-04-28) + + +### ⚠ BREAKING CHANGES + +* **coding-standard:** Much of the "setup" that's built-into the command is removed in favor of a leaner action. This also includes the "on PR, only diff PR contents" behavior. This can be restored, but it shouldn't be the default and should be done as an input. +* **coding-standard-baseline:** remove coding-standard-baseline action ([#223](https://github.com/graycoreio/github-actions-magento2/issues/223)) +* **install-test:** You should rely on [Check Extension](https://github.com/graycoreio/github-actions-magento2/blob/main/.github/workflows/check-extension-README.md) instead. +* **unit-test:** remove unit-test action ([#221](https://github.com/graycoreio/github-actions-magento2/issues/221)) +* **supported-version:** `include_services` now defaults to `true`. Callers that strictly validate the matrix schema and do not expect a `services` key must explicitly pass `include_services: false`. + +### Features + +* **coding-standard-baseline:** remove coding-standard-baseline action ([#223](https://github.com/graycoreio/github-actions-magento2/issues/223)) ([953de84](https://github.com/graycoreio/github-actions-magento2/commit/953de845ebf7b5d2c9a24670b380c016bd6efdcd)) +* **coding-standard:** add missing composer_auth to require of magento-coding-standard ([3fad3a8](https://github.com/graycoreio/github-actions-magento2/commit/3fad3a89954be09a0f11f04a6c1c7d927fc872eb)) +* **coding-standard:** remove pr-diff feature and built-in php setup ([#224](https://github.com/graycoreio/github-actions-magento2/issues/224)) ([d5c744e](https://github.com/graycoreio/github-actions-magento2/commit/d5c744e15544e249f79fa486a073d7020635e48a)) +* **coding-standard:** skip composer install if the coding is already installed ([e1a8a81](https://github.com/graycoreio/github-actions-magento2/commit/e1a8a81488c77144786427ff63a99f93cd17b897)) +* **install-test:** remove install test ([#222](https://github.com/graycoreio/github-actions-magento2/issues/222)) ([de415ea](https://github.com/graycoreio/github-actions-magento2/commit/de415eaff54507ca24cbecf8916fd1526beb0186)) +* **unit-test:** remove unit-test action ([#221](https://github.com/graycoreio/github-actions-magento2/issues/221)) ([98923b2](https://github.com/graycoreio/github-actions-magento2/commit/98923b24c58899779a6a6367e3863d718b09bb8d)) + + +### Bug Fixes + +* **check-extension:** mirror path repos to prevent symlink errors with template files ([#218](https://github.com/graycoreio/github-actions-magento2/issues/218)) ([d80befb](https://github.com/graycoreio/github-actions-magento2/commit/d80befbe9b26dfa37af117775544c85ea36b7127)), closes [#217](https://github.com/graycoreio/github-actions-magento2/issues/217) +* **check-extension:** probe vendor dir for MageOS/Magento standards when running phpcs ([#216](https://github.com/graycoreio/github-actions-magento2/issues/216)) ([7799f0f](https://github.com/graycoreio/github-actions-magento2/commit/7799f0f9bf788545bc36924b6528c09c6a8bb09a)), closes [#213](https://github.com/graycoreio/github-actions-magento2/issues/213) +* **supported-version:** default include_services to true ([#215](https://github.com/graycoreio/github-actions-magento2/issues/215)) ([b510ea2](https://github.com/graycoreio/github-actions-magento2/commit/b510ea21e38c97a4852776fc4e57fbcf9917fa9f)), closes [#214](https://github.com/graycoreio/github-actions-magento2/issues/214) + + +### Miscellaneous Chores + +* release 7.0.0-rc.0 ([4001e81](https://github.com/graycoreio/github-actions-magento2/commit/4001e8118b6da28d7c9fd18d3ab127cee03681d3)) + ## [6.0.0](https://github.com/graycoreio/github-actions-magento2/compare/v5.1.0...v6.0.0) (2026-03-11) diff --git a/coding-standard/action.yml b/coding-standard/action.yml index 7555a7a..233a70d 100644 --- a/coding-standard/action.yml +++ b/coding-standard/action.yml @@ -52,12 +52,12 @@ runs: fi - name: Get Composer Version - uses: graycoreio/github-actions-magento2/get-composer-version@main + uses: graycoreio/github-actions-magento2/get-composer-version@v7.0.0-rc.0 id: get-composer-version if: steps.check-installed.outputs.installed != 'true' - name: Check if allow-plugins option is available for this version of composer - uses: graycoreio/github-actions-magento2/semver-compare@main + uses: graycoreio/github-actions-magento2/semver-compare@v7.0.0-rc.0 id: is-allow-plugins-available if: steps.check-installed.outputs.installed != 'true' with: diff --git a/fix-magento-install/action.yml b/fix-magento-install/action.yml index 317ad2a..8e0145f 100644 --- a/fix-magento-install/action.yml +++ b/fix-magento-install/action.yml @@ -9,7 +9,7 @@ inputs: runs: using: "composite" steps: - - uses: graycoreio/github-actions-magento2/get-magento-version@main + - uses: graycoreio/github-actions-magento2/get-magento-version@v7.0.0-rc.0 id: init-magento-get-magento-version with: working-directory: ${{ inputs.magento_directory }} diff --git a/package-lock.json b/package-lock.json index ae26818..f232197 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@graycoreio/github-actions-magento2", - "version": "6.0.0", + "version": "7.0.0-rc.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@graycoreio/github-actions-magento2", - "version": "6.0.0", + "version": "7.0.0-rc.0", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1" diff --git a/package.json b/package.json index aa14794..0d4e2ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@graycoreio/github-actions-magento2", - "version": "6.0.0", + "version": "7.0.0-rc.0", "description": "Github Actions for Magento 2", "scripts": { "test": "cd supported-version && npm run test && cd -", diff --git a/setup-magento/action.yml b/setup-magento/action.yml index 9c97590..90bc550 100644 --- a/setup-magento/action.yml +++ b/setup-magento/action.yml @@ -90,7 +90,7 @@ runs: env: COMPOSER_AUTH: ${{ inputs.composer_auth }} - - uses: graycoreio/github-actions-magento2/fix-magento-install@main + - uses: graycoreio/github-actions-magento2/fix-magento-install@v7.0.0-rc.0 name: Fix Magento Out of Box Install Issues with: magento_directory: ${{ steps.setup-magento-compute-directory.outputs.MAGENTO_DIRECTORY }}