From a9636c9e0c195edd6b45b601a232c183f060e71a Mon Sep 17 00:00:00 2001 From: GrayBot <120588553+gray-bot@users.noreply.github.com> Date: Mon, 25 May 2026 09:27:59 -0400 Subject: [PATCH 1/2] chore: release 8.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ cache-magento/README.md | 8 ++++---- coding-standard/README.md | 2 +- docs/workflows/check-extension.md | 4 ++-- docs/workflows/check-store.md | 4 ++-- docs/workflows/integration.md | 4 ++-- fix-magento-install/README.md | 2 +- get-composer-version/README.md | 2 +- get-magento-version/README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- resolve-check-config/README.md | 4 ++-- sansec-ecomscan/README.md | 2 +- semver-compare/README.md | 2 +- setup-di-compile/README.md | 8 ++++---- setup-install/README.md | 6 +++--- setup-magento/README.md | 4 ++-- supported-version/README.md | 4 ++-- 19 files changed, 44 insertions(+), 33 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 70330e14..dbff9855 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"8.2.0"} +{".":"8.3.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2367294c..0540ac7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ 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. +## [8.3.0](https://github.com/graycoreio/github-actions-magento2/compare/v8.2.0...v8.3.0) (2026-05-25) + + +### Features + +* **check-store:** use the project when computing underlying version requirements ([fa8e597](https://github.com/graycoreio/github-actions-magento2/commit/fa8e59736563d5969f5c8ebaccd23c48f0628721)) +* **get-magento-version:** add support for MageOS minimal distro ([863444a](https://github.com/graycoreio/github-actions-magento2/commit/863444afbd137d32157392b964f06503f021ee6c)) +* **get-magento-version:** emit supported-version project name as an output ([1ea5a10](https://github.com/graycoreio/github-actions-magento2/commit/1ea5a10ef67d6fda8d10e078895adc9bea434477)) +* **supported-version:** add support for MageOS 3 ([1e63c01](https://github.com/graycoreio/github-actions-magento2/commit/1e63c019edb63ee0bcd4576b4125b73520ca8864)) +* **supported-version:** add support for MageOS Minimal edition ([befe080](https://github.com/graycoreio/github-actions-magento2/commit/befe0807f7636c125d7e650f2d08012b28554a54)) + ## [8.2.0](https://github.com/graycoreio/github-actions-magento2/compare/v8.1.0...v8.2.0) (2026-05-17) diff --git a/cache-magento/README.md b/cache-magento/README.md index 1fdf1583..aff6f628 100644 --- a/cache-magento/README.md +++ b/cache-magento/README.md @@ -33,7 +33,7 @@ The `composer.lock` hash is derived from `working-directory/composer.lock` using ### Extension (download cache only) ```yml -- uses: graycoreio/github-actions-magento2/cache-magento@v8.2.0 # x-release-please-version +- uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 # x-release-please-version with: composer_cache_key: ${{ inputs.composer_cache_key }} ``` @@ -41,13 +41,13 @@ The `composer.lock` hash is derived from `working-directory/composer.lock` using ### Extension or store (download + vendor stamp cache) ```yml -- uses: graycoreio/github-actions-magento2/setup-magento@v8.2.0 # x-release-please-version +- uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 # x-release-please-version id: setup-magento with: mode: extension # or store # ... -- uses: graycoreio/github-actions-magento2/cache-magento@v8.2.0 # x-release-please-version +- uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 # x-release-please-version with: composer_cache_key: ${{ inputs.composer_cache_key }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -69,7 +69,7 @@ As such, use `stamp: true` when `composer.lock` is stable across most runs — a > **Dependabot / Renovate:** Each time a Dependabot or Renovate PR is merged, the remaining open PRs rebase and each produces a new `composer.lock`. This cascades into a large number of unique cache entries, inflating storage costs without delivering proportional compute savings — because automated PRs are not waiting on fast feedback. The fix is to disable stamp caching for automated dependency PRs entirely: > > ```yml -> - uses: graycoreio/github-actions-magento2/cache-magento@v8.2.0 # x-release-please-version +> - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 # x-release-please-version > with: > stamp: ${{ github.actor != 'dependabot[bot]' }} > ``` diff --git a/coding-standard/README.md b/coding-standard/README.md index ba25fc85..c0dd5b83 100644 --- a/coding-standard/README.md +++ b/coding-standard/README.md @@ -36,7 +36,7 @@ jobs: tools: composer:v2 coverage: none - - uses: graycoreio/github-actions-magento2/coding-standard@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/coding-standard@v8.3.0 # x-release-please-version with: path: app/code # Optional, defaults to . version: 25 # Optional, will use the latest if omitted. diff --git a/docs/workflows/check-extension.md b/docs/workflows/check-extension.md index e89af9d8..b14ae44b 100644 --- a/docs/workflows/check-extension.md +++ b/docs/workflows/check-extension.md @@ -55,12 +55,12 @@ jobs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version - run: echo ${{ steps.supported-version.outputs.matrix }} check-extension: needs: compute_matrix - uses: graycoreio/github-actions-magento2/.github/workflows/check-extension.yaml@v8.2.0 # x-release-please-version + uses: graycoreio/github-actions-magento2/.github/workflows/check-extension.yaml@v8.3.0 # x-release-please-version with: matrix: ${{ needs.compute_matrix.outputs.matrix }} ``` diff --git a/docs/workflows/check-store.md b/docs/workflows/check-store.md index 5bc066ca..a65479bd 100644 --- a/docs/workflows/check-store.md +++ b/docs/workflows/check-store.md @@ -58,7 +58,7 @@ on: jobs: check-store: - uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v8.2.0 # x-release-please-version + uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v8.3.0 # x-release-please-version secrets: composer_auth: ${{ secrets.COMPOSER_AUTH }} ``` @@ -70,7 +70,7 @@ If your pipeline builds or prepares the store in a prior job and uploads it as a ```yml jobs: check-store: - uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v8.2.0 # x-release-please-version + uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v8.3.0 # x-release-please-version secrets: composer_auth: ${{ secrets.COMPOSER_AUTH }} ``` diff --git a/docs/workflows/integration.md b/docs/workflows/integration.md index 0bc0abd8..f2390087 100644 --- a/docs/workflows/integration.md +++ b/docs/workflows/integration.md @@ -50,13 +50,13 @@ jobs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version with: include_services: true id: supported-version integration-workflow: needs: compute_matrix - uses: graycoreio/github-actions-magento2/.github/workflows/integration.yaml@v8.2.0 # x-release-please-version + uses: graycoreio/github-actions-magento2/.github/workflows/integration.yaml@v8.3.0 # x-release-please-version with: package_name: my-vendor/package matrix: ${{ needs.compute_matrix.outputs.matrix }} diff --git a/fix-magento-install/README.md b/fix-magento-install/README.md index 7f66d92e..21423ef9 100644 --- a/fix-magento-install/README.md +++ b/fix-magento-install/README.md @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/fix-magento-install@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/fix-magento-install@v8.3.0 # x-release-please-version with: magento_directory: path/to/magento ``` diff --git a/get-composer-version/README.md b/get-composer-version/README.md index fac0ac63..2ae4ecc1 100644 --- a/get-composer-version/README.md +++ b/get-composer-version/README.md @@ -25,7 +25,7 @@ jobs: name: A job to compute an installed Composer version. steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/get-composer-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/get-composer-version@v8.3.0 # x-release-please-version id: get-composer-version - run: echo version ${{ steps.get-composer-version.outputs.version }} shell: bash diff --git a/get-magento-version/README.md b/get-magento-version/README.md index d43cc142..16aee44b 100644 --- a/get-magento-version/README.md +++ b/get-magento-version/README.md @@ -25,7 +25,7 @@ jobs: name: A job to compute an installed Magento version. steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/get-magento-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/get-magento-version@v8.3.0 # x-release-please-version id: get-magento-version - run: echo version ${{ steps.get-magento-version.outputs.version }} shell: bash diff --git a/package-lock.json b/package-lock.json index c96bf2cf..5ca846ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@graycoreio/github-actions-magento2", - "version": "8.2.0", + "version": "8.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@graycoreio/github-actions-magento2", - "version": "8.2.0", + "version": "8.3.0", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index dc5df744..70bf0441 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@graycoreio/github-actions-magento2", - "version": "8.2.0", + "version": "8.3.0", "description": "Github Actions for Magento 2", "scripts": { "test": "cd supported-version && npm run test && cd - && cd setup-install && npm run test && cd -", diff --git a/resolve-check-config/README.md b/resolve-check-config/README.md index 3a308e7c..b2b96214 100644 --- a/resolve-check-config/README.md +++ b/resolve-check-config/README.md @@ -21,12 +21,12 @@ jobs: outputs: resolved: ${{ steps.resolve.outputs.resolved }} steps: - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version with: kind: currently-supported - - uses: graycoreio/github-actions-magento2/resolve-check-config@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/resolve-check-config@v8.3.0 # x-release-please-version id: resolve with: kind: store diff --git a/sansec-ecomscan/README.md b/sansec-ecomscan/README.md index e893ae46..2923804f 100644 --- a/sansec-ecomscan/README.md +++ b/sansec-ecomscan/README.md @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/sansec-ecomscan@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/sansec-ecomscan@v8.3.0 # x-release-please-version with: license: ${{ secrets.SANSEC_LICENSE_KEY }} ``` diff --git a/semver-compare/README.md b/semver-compare/README.md index bc7d56b9..2f76fc96 100644 --- a/semver-compare/README.md +++ b/semver-compare/README.md @@ -31,7 +31,7 @@ jobs: name: A job to semantically compare two versions steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/semver-compare@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/semver-compare@v8.3.0 # x-release-please-version with: version: 2.1.0 compare_against: 2.2.3 diff --git a/setup-di-compile/README.md b/setup-di-compile/README.md index 23490bee..c830c024 100644 --- a/setup-di-compile/README.md +++ b/setup-di-compile/README.md @@ -28,7 +28,7 @@ jobs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version compile: @@ -40,19 +40,19 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 # x-release-please-version id: setup-magento with: php-version: ${{ matrix.php }} tools: composer:v${{ matrix.composer }} - - uses: graycoreio/github-actions-magento2/cache-magento@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 # x-release-please-version - run: composer install env: COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} - - uses: graycoreio/github-actions-magento2/setup-di-compile@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-di-compile@v8.3.0 # x-release-please-version with: path: ${{ steps.setup-magento.outputs.path }} ``` diff --git a/setup-install/README.md b/setup-install/README.md index db79fb8b..bf85b1ba 100644 --- a/setup-install/README.md +++ b/setup-install/README.md @@ -36,7 +36,7 @@ jobs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version with: include_services: "true" @@ -51,7 +51,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 # x-release-please-version id: setup-magento with: php-version: ${{ matrix.php }} @@ -64,7 +64,7 @@ jobs: env: COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} - - uses: graycoreio/github-actions-magento2/setup-install@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-install@v8.3.0 # x-release-please-version with: services: ${{ toJSON(matrix.services) }} path: ${{ steps.setup-magento.outputs.path }} diff --git a/setup-magento/README.md b/setup-magento/README.md index a348cd24..464ed4f0 100644 --- a/setup-magento/README.md +++ b/setup-magento/README.md @@ -51,7 +51,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 # x-release-please-version id: setup-magento with: php-version: "8.3" @@ -89,7 +89,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 # x-release-please-version id: setup-magento with: php-version: "8.3" diff --git a/supported-version/README.md b/supported-version/README.md index b0f0609e..a63cd7b3 100644 --- a/supported-version/README.md +++ b/supported-version/README.md @@ -68,7 +68,7 @@ with: ### Example ```yml -- uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version +- uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version with: kind: currently-supported @@ -94,7 +94,7 @@ jobs: outputs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - - uses: graycoreio/github-actions-magento2/supported-version@v8.2.0 # x-release-please-version + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 # x-release-please-version id: supported-version - run: echo ${{ steps.supported-version.outputs.matrix }} ``` From 60ad39d2bacf7312711760cd83df0d2820fb9216 Mon Sep 17 00:00:00 2001 From: Beep Boop Date: Mon, 25 May 2026 13:28:03 +0000 Subject: [PATCH 2/2] chore: pin internal action refs to v8.3.0 --- .github/workflows/check-extension.yaml | 24 +++++++++++----------- .github/workflows/check-store.yaml | 28 +++++++++++++------------- .github/workflows/integration.yaml | 2 +- cache-magento/action.yml | 2 +- coding-standard/action.yml | 4 ++-- fix-magento-install/action.yml | 2 +- setup-magento/action.yml | 2 +- 7 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/check-extension.yaml b/.github/workflows/check-extension.yaml index d2cafc0f..953cd9b7 100644 --- a/.github/workflows/check-extension.yaml +++ b/.github/workflows/check-extension.yaml @@ -47,7 +47,7 @@ jobs: outputs: resolved: ${{ steps.resolve.outputs.resolved }} steps: - - uses: graycoreio/github-actions-magento2/resolve-check-config@main + - uses: graycoreio/github-actions-magento2/resolve-check-config@v8.3.0 id: resolve with: kind: extension @@ -63,7 +63,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -92,7 +92,7 @@ jobs: env: COMPOSER_AUTH: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key && format('{0} | {1}', inputs.composer_cache_key, matrix.magento) || matrix.magento }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -134,7 +134,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -163,7 +163,7 @@ jobs: env: COMPOSER_AUTH: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key && format('{0} | {1}', inputs.composer_cache_key, matrix.magento) || matrix.magento }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -176,7 +176,7 @@ jobs: COMPOSER_AUTH: ${{ secrets.composer_auth }} COMPOSER_MIRROR_PATH_REPOS: 1 - - uses: graycoreio/github-actions-magento2/setup-di-compile@main + - uses: graycoreio/github-actions-magento2/setup-di-compile@v8.3.0 with: path: ${{ steps.setup-magento.outputs.path }} @@ -185,7 +185,7 @@ jobs: outputs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - - uses: graycoreio/github-actions-magento2/supported-version@main + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 id: supported-version with: kind: latest @@ -205,11 +205,11 @@ jobs: tools: composer:v${{ matrix.composer }} coverage: none - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key && format('{0} | {1}', inputs.composer_cache_key, matrix.magento) || matrix.magento }} - - uses: graycoreio/github-actions-magento2/coding-standard@main + - uses: graycoreio/github-actions-magento2/coding-standard@v8.3.0 with: path: ${{ inputs.path }} composer_auth: ${{ secrets.composer_auth }} @@ -225,7 +225,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -254,7 +254,7 @@ jobs: env: COMPOSER_AUTH: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key && format('{0} | {1}', inputs.composer_cache_key, matrix.magento) || matrix.magento }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -267,7 +267,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@v8.3.0 id: magento-version with: working-directory: ${{ steps.setup-magento.outputs.path }} diff --git a/.github/workflows/check-store.yaml b/.github/workflows/check-store.yaml index 79b34682..92b4ed56 100644 --- a/.github/workflows/check-store.yaml +++ b/.github/workflows/check-store.yaml @@ -46,19 +46,19 @@ jobs: name: ${{ inputs.store_artifact_name }} path: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/get-magento-version@main + - uses: graycoreio/github-actions-magento2/get-magento-version@v8.3.0 id: get-magento-version with: working-directory: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/supported-version@main + - uses: graycoreio/github-actions-magento2/supported-version@v8.3.0 id: supported-version with: project: ${{ steps.get-magento-version.outputs.supported_version_project }} kind: custom custom_versions: ${{ steps.get-magento-version.outputs.project }}:${{ fromJSON(steps.get-magento-version.outputs.version) }} - - uses: graycoreio/github-actions-magento2/resolve-check-config@main + - uses: graycoreio/github-actions-magento2/resolve-check-config@v8.3.0 id: resolve with: kind: store @@ -81,7 +81,7 @@ jobs: name: ${{ inputs.store_artifact_name }} path: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -90,7 +90,7 @@ jobs: working-directory: ${{ inputs.path }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -144,7 +144,7 @@ jobs: name: ${{ inputs.store_artifact_name }} path: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -153,7 +153,7 @@ jobs: working-directory: ${{ inputs.path }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -178,7 +178,7 @@ jobs: EOF fi - - uses: graycoreio/github-actions-magento2/coding-standard@main + - uses: graycoreio/github-actions-magento2/coding-standard@v8.3.0 with: path: ${{ steps.setup-magento.outputs.path }} composer_auth: ${{ secrets.composer_auth }} @@ -201,7 +201,7 @@ jobs: name: ${{ inputs.store_artifact_name }} path: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/setup-magento@main + - uses: graycoreio/github-actions-magento2/setup-magento@v8.3.0 id: setup-magento with: php-version: ${{ matrix.php }} @@ -210,7 +210,7 @@ jobs: working-directory: ${{ inputs.path }} composer_auth: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/cache-magento@main + - uses: graycoreio/github-actions-magento2/cache-magento@v8.3.0 with: composer_cache_key: ${{ inputs.composer_cache_key }} working-directory: ${{ steps.setup-magento.outputs.path }} @@ -222,7 +222,7 @@ jobs: env: COMPOSER_AUTH: ${{ secrets.composer_auth }} - - uses: graycoreio/github-actions-magento2/setup-install@main + - uses: graycoreio/github-actions-magento2/setup-install@v8.3.0 id: setup-install with: services: ${{ toJSON(matrix.services) }} @@ -230,15 +230,15 @@ jobs: container_id: ${{ job.services['php-fpm'].id }} extra_args: --magento-init-params=MAGE_MODE=developer - - uses: graycoreio/github-actions-magento2/configure-service-nginx@main + - uses: graycoreio/github-actions-magento2/configure-service-nginx@v8.3.0 with: container_id: ${{ job.services.nginx.id }} magento_path: ${{ inputs.path }} - - uses: graycoreio/github-actions-magento2/smoke-test@main + - uses: graycoreio/github-actions-magento2/smoke-test@v8.3.0 with: kind: page - - uses: graycoreio/github-actions-magento2/smoke-test@main + - uses: graycoreio/github-actions-magento2/smoke-test@v8.3.0 with: kind: graphql \ No newline at end of file diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 22a56293..7ea5018f 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@v8.3.0 id: magento-version with: working-directory: ${{ inputs.magento_directory }} diff --git a/cache-magento/action.yml b/cache-magento/action.yml index c29f0014..60564732 100644 --- a/cache-magento/action.yml +++ b/cache-magento/action.yml @@ -62,7 +62,7 @@ runs: exit 1 fi - - uses: graycoreio/github-actions-magento2/get-magento-version@main + - uses: graycoreio/github-actions-magento2/get-magento-version@v8.3.0 id: cache-magento-get-magento-version with: working-directory: ${{ inputs.working-directory }} diff --git a/coding-standard/action.yml b/coding-standard/action.yml index aa00dc73..bfd7644a 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@v8.3.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@v8.3.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 e48f0ad8..01b37af0 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@v8.3.0 id: init-magento-get-magento-version with: working-directory: ${{ inputs.magento_directory }} diff --git a/setup-magento/action.yml b/setup-magento/action.yml index be009094..efa31f61 100644 --- a/setup-magento/action.yml +++ b/setup-magento/action.yml @@ -111,7 +111,7 @@ runs: fi printf '%s\n' "$line" >> .gitattributes - - uses: graycoreio/github-actions-magento2/fix-magento-install@main + - uses: graycoreio/github-actions-magento2/fix-magento-install@v8.3.0 name: Fix Magento Out of Box Install Issues with: magento_directory: ${{ steps.setup-magento-compute-directory.outputs.MAGENTO_DIRECTORY }}