From 74f1e3ec39e33f5e1c326161246b2b5c4846ab32 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Sat, 9 May 2026 20:10:07 -0400 Subject: [PATCH] docs: use x-release-please-version release-please with x-release-please-major clobbered the magento2 -> magento8. This is obviously dumb. --- 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 +- 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 | 2 +- 14 files changed, 26 insertions(+), 26 deletions(-) diff --git a/cache-magento/README.md b/cache-magento/README.md index e4fb311..8ba2717 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@v7 # x-release-please-major +- uses: graycoreio/github-actions-magento2/cache-magento@v7.0.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@v7 # x-release-please-major +- uses: graycoreio/github-actions-magento2/setup-magento@v7.0.0 # x-release-please-version id: setup-magento with: mode: extension # or store # ... -- uses: graycoreio/github-actions-magento2/cache-magento@v7 # x-release-please-major +- uses: graycoreio/github-actions-magento2/cache-magento@v7.0.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@v7 # x-release-please-major +> - uses: graycoreio/github-actions-magento2/cache-magento@v7.0.0 # x-release-please-version > with: > stamp: ${{ github.actor != 'dependabot[bot]' }} > ``` diff --git a/coding-standard/README.md b/coding-standard/README.md index fa69116..71abe49 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/coding-standard@v7.0.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 647fe37..6daad76 100644 --- a/docs/workflows/check-extension.md +++ b/docs/workflows/check-extension.md @@ -38,12 +38,12 @@ jobs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - uses: actions/checkout@v6 - - uses: graycoreio/github-actions-magento2/supported-version@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/supported-version@v7.0.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@v7 # x-release-please-major + uses: graycoreio/github-actions-magento2/.github/workflows/check-extension.yaml@v7.0.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 1127cd9..85cf7cd 100644 --- a/docs/workflows/check-store.md +++ b/docs/workflows/check-store.md @@ -40,7 +40,7 @@ on: jobs: check-store: - uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v7 # x-release-please-major + uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v7.0.0 # x-release-please-version secrets: composer_auth: ${{ secrets.COMPOSER_AUTH }} ``` @@ -52,7 +52,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@v7 # x-release-please-major + uses: graycoreio/github-actions-magento2/.github/workflows/check-store.yaml@v7.0.0 # x-release-please-version secrets: composer_auth: ${{ secrets.COMPOSER_AUTH }} ``` diff --git a/docs/workflows/integration.md b/docs/workflows/integration.md index 7f66230..9a8a0c1 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/supported-version@v7.0.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@v7 # x-release-please-major + uses: graycoreio/github-actions-magento2/.github/workflows/integration.yaml@v7.0.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 ad577ae..7282717 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/fix-magento-install@v7.0.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 8889a33..240b06a 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/get-composer-version@v7.0.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 8ee1a99..83ab8be 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/get-magento-version@v7.0.0 # x-release-please-version id: get-magento-version - run: echo version ${{ steps.get-magento-version.outputs.version }} shell: bash diff --git a/sansec-ecomscan/README.md b/sansec-ecomscan/README.md index b079510..70c71be 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/sansec-ecomscan@v7.0.0 # x-release-please-version with: license: ${{ secrets.SANSEC_LICENSE_KEY }} ``` diff --git a/semver-compare/README.md b/semver-compare/README.md index daec31f..c54283d 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/semver-compare@v7.0.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 7811551..5c90cdf 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/supported-version@v7.0.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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/cache-magento@v7.0.0 # x-release-please-version - run: composer install env: COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} - - uses: graycoreio/github-actions-magento2/setup-di-compile@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-di-compile@v7.0.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 a2c63a3..dae45a1 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/supported-version@v7.0.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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-install@v7.0.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 947735a..515c3a2 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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.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@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/setup-magento@v7.0.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 37e18a1..bcc01b2 100644 --- a/supported-version/README.md +++ b/supported-version/README.md @@ -51,7 +51,7 @@ jobs: outputs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - - uses: graycoreio/github-actions-magento2/supported-version@v7 # x-release-please-major + - uses: graycoreio/github-actions-magento2/supported-version@v7.0.0 # x-release-please-version id: supported-version - run: echo ${{ steps.supported-version.outputs.matrix }} ```