mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-13 13:14:53 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2855f468ef | |||
| 7e70ee93ef | |||
| d29e574475 | |||
| c19912dc4b | |||
| c26e84f693 | |||
| 48902e8e6a | |||
| 07f89530df | |||
| 505179ce7b | |||
| 34ddee6aef | |||
| 462e60345e | |||
| f45372b796 | |||
| 7b5ccf7d9d | |||
| dc2f775d75 | |||
| 5f3ba73bc6 | |||
| 86b01b17fa | |||
| c2c3755729 | |||
| 5d47cda771 | |||
| dc750a9f2f | |||
| 7c0bc65842 | |||
| 89912779a9 |
@@ -0,0 +1,49 @@
|
||||
# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|
||||
# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|
||||
# $$ Code Owners $$
|
||||
# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|
||||
# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|
||||
#
|
||||
# The configuration for Code Owners for graycoreio/magento2-devcontainer.
|
||||
#
|
||||
# For more info see: https://help.github.com/articles/about-codeowners/
|
||||
#
|
||||
|
||||
|
||||
# ================================================
|
||||
# Concepts
|
||||
# ================================================
|
||||
#
|
||||
# A CodeOwner should only review what they are comfortable reviewing. If you're not comfortable, say something.
|
||||
# It is a CodeOwners responsibility to only accept the changes that they understand and deem necessary.
|
||||
# The CodeOwners have final say on whether or not code is accepted.
|
||||
# If multiple CodeOwners are listed, ALL code owners must approve the PR prior to merge.
|
||||
# CodeOwners work in conjunction with Github's "Number of Required Approvals (1)" requirement.
|
||||
|
||||
|
||||
|
||||
# ================================================
|
||||
# GitHub username registry
|
||||
# ================================================
|
||||
|
||||
# damienwebdev - Damien Retzinger
|
||||
|
||||
|
||||
######################################################################################################
|
||||
#
|
||||
# CODEOWNERS rules
|
||||
# -----------------
|
||||
#
|
||||
# All the following rules are applied in the order specified in this file.
|
||||
# The last rule that matches wins!
|
||||
#
|
||||
# See https://git-scm.com/docs/gitignore#_pattern_format for pattern syntax docs.
|
||||
#
|
||||
######################################################################################################
|
||||
|
||||
|
||||
# ================================================
|
||||
# Default Owners
|
||||
# ================================================
|
||||
|
||||
* @damienwebdev
|
||||
@@ -36,7 +36,7 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./supported-version
|
||||
with:
|
||||
kind: currently-supported
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
fail-fast: false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: './coding-standard'
|
||||
with:
|
||||
version: ${{ github.event.inputs.version || '*' }}
|
||||
|
||||
@@ -21,7 +21,7 @@ jobs:
|
||||
get-composer-version:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- name: Set PHP Version
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
get-magento-version:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- name: Set PHP Version
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./supported-version
|
||||
with:
|
||||
kind: currently-supported
|
||||
@@ -44,7 +44,7 @@ jobs:
|
||||
fail-fast: false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./installation-test
|
||||
with:
|
||||
composer_version: ${{ matrix.composer }}
|
||||
|
||||
@@ -27,11 +27,12 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./supported-version
|
||||
with:
|
||||
kind: currently-supported
|
||||
include_services: true
|
||||
id: supported-version
|
||||
integration-workflow:
|
||||
needs: compute_matrix
|
||||
uses: ./.github/workflows/integration.yaml
|
||||
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
semver-compare:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./semver-compare
|
||||
id: version-compare-1
|
||||
|
||||
@@ -116,7 +116,7 @@ jobs:
|
||||
setup-magento-extension:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./setup-magento
|
||||
id: setup-magento
|
||||
|
||||
@@ -26,7 +26,7 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./supported-version
|
||||
with:
|
||||
kind: currently-supported
|
||||
|
||||
@@ -22,7 +22,7 @@ jobs:
|
||||
unit-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- run: npm ci
|
||||
shell: bash
|
||||
|
||||
@@ -37,7 +37,7 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/supported-version@main
|
||||
id: supported-version
|
||||
- run: echo ${{ steps.supported-version.outputs.matrix }}
|
||||
|
||||
@@ -272,7 +272,7 @@ jobs:
|
||||
run: ../../../vendor/bin/phpunit -c phpunit.xml.dist --testsuite Extension_Integration_Tests
|
||||
|
||||
- name: Upload test sandbox dir
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v6
|
||||
if: failure()
|
||||
with:
|
||||
name: sandbox-data-${{ steps.magento-version.outputs.version }}
|
||||
|
||||
@@ -8,9 +8,10 @@ See the [integration.yaml](./integration.yaml)
|
||||
|
||||
| Input | Description | Required | Default |
|
||||
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------------------------- |
|
||||
| matrix | JSON string of [version matrix for Magento](./#matrix-format) | true | NULL |
|
||||
| matrix | JSON string of [version matrix for Magento](./#matrix-format). Must include a `services` key (pass `include_services: true` to the supported-version action). | true | NULL |
|
||||
| fail-fast | Same as Github's [fail-fast](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast) | false | true |
|
||||
| package_name | The name of the package | true | NULL |
|
||||
| use_local_source | Whether or not you want to test your local package or not. | false | true |
|
||||
| source_folder | The source folder of the package | false | $GITHUB_WORKSPACE |
|
||||
| magento_directory | The folder where Magento will be installed | false | ../magento2 |
|
||||
| magento_repository | Where to install Magento from | false | https://mirror.mage-os.org/ |
|
||||
@@ -46,10 +47,11 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/supported-version@main
|
||||
with:
|
||||
include_services: true
|
||||
id: supported-version
|
||||
- run: echo ${{ steps.supported-version.outputs.matrix }}
|
||||
integration-workflow:
|
||||
needs: compute_matrix
|
||||
uses: graycoreio/github-actions-magento2/.github/workflows/integration.yaml@main
|
||||
|
||||
@@ -64,7 +64,7 @@ jobs:
|
||||
fail-fast: ${{ inputs.fail-fast }}
|
||||
matrix: ${{ fromJSON(inputs.matrix) }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- name: Set PHP Version
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
@@ -96,7 +96,7 @@ jobs:
|
||||
|
||||
|
||||
- name: "Cache Composer Packages"
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: "composer | v5 | ${{ inputs.composer_cache_key }} | ${{ hashFiles('composer.lock') }} | ${{ matrix.os }} | ${{ matrix.composer }} | ${{ matrix.php }} | ${{ matrix.magento }}"
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
@@ -181,7 +181,7 @@ jobs:
|
||||
name: Run Integration Tests
|
||||
|
||||
- name: Upload test sandbox dir
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v6
|
||||
if: failure()
|
||||
with:
|
||||
name: sandbox-data-${{ steps.magento-version.outputs.version }}
|
||||
|
||||
@@ -9,8 +9,6 @@ jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: google-github-actions/release-please-action@v4
|
||||
- uses: googleapis/release-please-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GRAYCORE_GITHUB_TOKEN }}
|
||||
command: manifest
|
||||
default-branch: main
|
||||
|
||||
@@ -1 +1 @@
|
||||
{".":"4.0.0"}
|
||||
{".":"5.1.0"}
|
||||
|
||||
@@ -2,6 +2,45 @@
|
||||
|
||||
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.
|
||||
|
||||
## [5.1.0](https://github.com/graycoreio/github-actions-magento2/compare/v5.0.0...v5.1.0) (2026-02-19)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **supported-version:** backport composer 2.9.3 to older mage-os verisons ([48902e8](https://github.com/graycoreio/github-actions-magento2/commit/48902e8e6a748a1328a0e50eff32e717a560975c))
|
||||
* **supported-version:** bump all composer versions to latest supported version ([c26e84f](https://github.com/graycoreio/github-actions-magento2/commit/c26e84f69361cd53dce853b415656f3af9b44427))
|
||||
* **supported-version:** bump all nginx versions to latest supported version ([c19912d](https://github.com/graycoreio/github-actions-magento2/commit/c19912dc4bfc83f4649bbd6bff8b8e9366384906))
|
||||
* **supported-versions:** upgrade 2.4.8-p2/p3 to opensearch 3 ([d29e574](https://github.com/graycoreio/github-actions-magento2/commit/d29e57447582250203ee5cbad561306ca6080ffa))
|
||||
* **supported-version:** updated matrix for Mage-OS 2.1.0 ([07f8953](https://github.com/graycoreio/github-actions-magento2/commit/07f89530df8396d359c043c6b3a8b429a67465a8))
|
||||
* **supported-version:** upgrade to compsoer 2.9.5 ([7e70ee9](https://github.com/graycoreio/github-actions-magento2/commit/7e70ee93efb85c48ef312cf4f796bc90acc1b9cf))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **supported-version:** pin specific composer 2 versions for historic Magento releases ([505179c](https://github.com/graycoreio/github-actions-magento2/commit/505179ce7bdf1b41472d9ba735cc36002b84e2a0))
|
||||
* using `latest` accidentally output two versions for Magento Open Source ([34ddee6](https://github.com/graycoreio/github-actions-magento2/commit/34ddee6aef5e21f1e4bfa992ff333031b7552c35))
|
||||
|
||||
## [5.0.0](https://github.com/graycoreio/github-actions-magento2/compare/v4.0.1...v5.0.0) (2026-02-18)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* remove unmaintained setup-di-compile action
|
||||
|
||||
### Features
|
||||
|
||||
* remove unmaintained setup-di-compile action ([7b5ccf7](https://github.com/graycoreio/github-actions-magento2/commit/7b5ccf7d9d67da8c67e77b222b89b0abf332b183))
|
||||
* use actions/cache@v5 ([86b01b1](https://github.com/graycoreio/github-actions-magento2/commit/86b01b17faf443802bdf827fdbb706c55ae7e3fb))
|
||||
* use actions/checkout@v6 ([c2c3755](https://github.com/graycoreio/github-actions-magento2/commit/c2c375572967ee6ff8afc3a406b8d5a02880159e))
|
||||
* use actions/upload-artifact@v6 ([5f3ba73](https://github.com/graycoreio/github-actions-magento2/commit/5f3ba73bc67a5c09e22f83c6e51421596103e0ce))
|
||||
|
||||
## [4.0.1](https://github.com/graycoreio/github-actions-magento2/compare/v4.0.0...v4.0.1) (2025-12-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **supported-version:** handle semver-ish values from old magento verisons ([7c0bc65](https://github.com/graycoreio/github-actions-magento2/commit/7c0bc65842e0e866cd957a44f879d37d04d11dce))
|
||||
|
||||
## [4.0.0](https://github.com/graycoreio/github-actions-magento2/compare/v3.0.0...v4.0.0) (2025-12-15)
|
||||
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ jobs:
|
||||
showcase_cache:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/cache-magento@main
|
||||
with:
|
||||
mode: 'store'
|
||||
|
||||
@@ -36,7 +36,7 @@ runs:
|
||||
id: cache-magento-get-composer-version
|
||||
|
||||
- name: "Cache Composer Packages"
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v5
|
||||
id: cache-magento-cache
|
||||
with:
|
||||
key: "composer | v5.8 | ${{ inputs.composer_cache_key }} | ${{ steps.cache-magento-get-composer-version.outputs.version }} | ${{ steps.cache-magento-get-php-version.outputs.version }}"
|
||||
|
||||
@@ -59,7 +59,7 @@ runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Checkout head
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: ${{ inputs.head_ref }}
|
||||
repository: ${{ inputs.head_repo }}
|
||||
@@ -108,7 +108,7 @@ runs:
|
||||
|
||||
- name: Checkout base
|
||||
if: steps.filter.outputs.phpcs == 'true'
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: ${{github.event.pull_request.base.ref}}
|
||||
repository: ${{github.event.pull_request.base.repo.full_name}}
|
||||
|
||||
@@ -46,7 +46,7 @@ runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Checkout Project
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
path: project
|
||||
|
||||
@@ -25,7 +25,7 @@ jobs:
|
||||
fix:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/fix-magento-install@main
|
||||
with:
|
||||
magento_directory: path/to/magento
|
||||
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: A job to compute an installed Composer version.
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/get-composer-version@main
|
||||
id: get-composer-version
|
||||
- run: echo version ${{ steps.get-composer-version.outputs.version }}
|
||||
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: A job to compute an installed Magento version.
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/get-magento-version@main
|
||||
id: get-magento-version
|
||||
- run: echo version ${{ steps.get-magento-version.outputs.version }}
|
||||
|
||||
@@ -25,7 +25,7 @@ jobs:
|
||||
outputs:
|
||||
matrix: ${{ steps.supported-version.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/supported-version@main
|
||||
id: supported-version
|
||||
- run: echo ${{ steps.supported-version.outputs.matrix }}
|
||||
@@ -36,7 +36,7 @@ jobs:
|
||||
matrix: ${{ fromJSON(needs.compute_matrix.outputs.matrix) }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/installation-test@main
|
||||
with:
|
||||
composer_version: ${{ matrix.composer }}
|
||||
|
||||
@@ -89,7 +89,7 @@ runs:
|
||||
|
||||
|
||||
- name: "Cache Composer Packages"
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: "composer | v5 | ${{ inputs.composer_cache_key }} | ${{ hashFiles('composer.lock') }} | ${{ runner.os }} | ${{ inputs.composer_version }} | ${{ inputs.php_version }} | ${{ inputs.magento_version }}"
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@graycoreio/github-actions-magento2",
|
||||
"version": "4.0.0",
|
||||
"version": "5.1.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@graycoreio/github-actions-magento2",
|
||||
"version": "4.0.0",
|
||||
"version": "5.1.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.11.1"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@graycoreio/github-actions-magento2",
|
||||
"version": "4.0.0",
|
||||
"version": "5.1.0",
|
||||
"description": "Github Actions for Magento 2",
|
||||
"scripts": {
|
||||
"test": "cd supported-version && npm run test && cd -",
|
||||
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: A job to semantically compare two versions
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/semver-compare@main
|
||||
with:
|
||||
version: 2.1.0
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
# Magento 2 setup:di:compile action
|
||||
A Github Action that runs `php bin/magento setup:di:compile` and checks for compilation errors.
|
||||
|
||||
## Inputs
|
||||
|
||||
See the [action.yml](./action.yml)
|
||||
|
||||
## Usage
|
||||
|
||||
```yml
|
||||
name: Magento setup:di:compile check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
setup-di-compile:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: graycoreio/github-actions-magento2/setup-di-compile@main
|
||||
with:
|
||||
php_version: "8.3"
|
||||
composer_version: "2"
|
||||
```
|
||||
@@ -1,58 +0,0 @@
|
||||
name: "Magento compilation (setup:di:compile)"
|
||||
author: "MageOS"
|
||||
description: "A Github Action that runs bin/magento setup:di:compile."
|
||||
|
||||
inputs:
|
||||
php_version:
|
||||
required: true
|
||||
default: "8.3"
|
||||
description: "PHP version used to run setup:di:compile."
|
||||
|
||||
composer_version:
|
||||
required: true
|
||||
default: "2"
|
||||
description: "The version of composer to use."
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Checkout Project
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Get changed files that could break compilation
|
||||
uses: tj-actions/changed-files@v39
|
||||
id: changed-files
|
||||
with:
|
||||
files_yaml: |
|
||||
magento:
|
||||
- 'composer.lock'
|
||||
- 'composer.json'
|
||||
- '**/*.php'
|
||||
- '**/*.xml'
|
||||
|
||||
- name: Set PHP Version
|
||||
if: steps.changed-files.outputs.magento_any_changed == 'true'
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ inputs.php_version }}
|
||||
tools: composer:v${{ inputs.composer_version }}
|
||||
coverage: none
|
||||
|
||||
- uses: graycoreio/github-actions-magento2/cache-magento@main
|
||||
with:
|
||||
mode: 'store'
|
||||
|
||||
- name: Install composer dependencies
|
||||
if: steps.changed-files.outputs.magento_any_changed == 'true'
|
||||
shell: bash
|
||||
run: composer install
|
||||
|
||||
- name: Enable all modules
|
||||
if: steps.changed-files.outputs.magento_any_changed == 'true'
|
||||
shell: bash
|
||||
run: php bin/magento module:enable --all
|
||||
|
||||
- name: Compile
|
||||
if: steps.changed-files.outputs.magento_any_changed == 'true'
|
||||
shell: bash
|
||||
run: php bin/magento setup:di:compile
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: graycoreio/github-actions-magento/setup-magento@main
|
||||
id: setup-magento
|
||||
@@ -87,7 +87,7 @@ jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: graycoreio/github-actions-magento/setup-magento@main
|
||||
id: setup-magento
|
||||
|
||||
Vendored
+22
-22
File diff suppressed because one or more lines are too long
@@ -35,8 +35,19 @@ describe('getUsableVersions for magento-open-source', () => {
|
||||
mockGetVersions.mockReturnValue({
|
||||
'magento/project-community-edition:2.4.6': { composer: '2.0.0' }
|
||||
});
|
||||
|
||||
|
||||
const versions = getUsableVersions(project);
|
||||
expect(versions).toContain('magento/project-community-edition:2.4.6');
|
||||
});
|
||||
|
||||
it('should handle numeric composer versions', () => {
|
||||
mockGetVersions.mockReturnValue({
|
||||
'magento/project-community-edition:2.3.7-p3': { composer: 1 },
|
||||
'magento/project-community-edition:2.4.6': { composer: 2 }
|
||||
});
|
||||
|
||||
const versions = getUsableVersions(project);
|
||||
expect(versions).not.toContain('magento/project-community-edition:2.3.7-p3');
|
||||
expect(versions).toContain('magento/project-community-edition:2.4.6');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -12,7 +12,8 @@ export const getUsableVersions = (project: string): string[] => {
|
||||
*/
|
||||
|
||||
// Packagist retired support for Composer 1 on 2025-09-01.
|
||||
if (value.composer && semver.lt(value.composer.toString(), '2.0.0')) {
|
||||
const composerVersion = semver.coerce(value.composer.toString());
|
||||
if (composerVersion && semver.lt(composerVersion, '2.0.0')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,6 +11,13 @@ describe('getMatrixForKind for mage-os', () => {
|
||||
expect(result.include).toBeDefined();
|
||||
});
|
||||
|
||||
it('returns a single-element matrix for with a matrix "magento" for `latest`', () => {
|
||||
const result = getMatrixForKind("latest", project);
|
||||
expect(result.magento.length).toEqual(1);
|
||||
expect(result.include.length).toEqual(1);
|
||||
expect(result.magento[0]).toEqual(result.include[0].magento);
|
||||
});
|
||||
|
||||
it('returns a matrix for `currently-supported`', () => {
|
||||
const result = getMatrixForKind("currently-supported", project);
|
||||
|
||||
@@ -46,6 +53,13 @@ describe('getMatrixForKind for mage-os', () => {
|
||||
expect(result.magento).toBeDefined();
|
||||
expect(result.include).toBeDefined();
|
||||
});
|
||||
|
||||
it('returns a single-element matrix for with a matrix "magento" for `nightly`', () => {
|
||||
const result = getMatrixForKind("nightly", project);
|
||||
expect(result.magento.length).toEqual(1);
|
||||
expect(result.include.length).toEqual(1);
|
||||
expect(result.magento[0]).toEqual(result.include[0].magento);
|
||||
});
|
||||
|
||||
it('errors for invalid `custom``', () => {
|
||||
expect(() => getMatrixForKind("custom", project)).toThrowError();
|
||||
@@ -64,11 +78,18 @@ describe('getMatrixForKind for magento-open-source', () => {
|
||||
|
||||
it('returns a matrix for `latest`', () => {
|
||||
const result = getMatrixForKind("latest", project);
|
||||
|
||||
console.log(result);
|
||||
expect(result.magento).toBeDefined();
|
||||
expect(result.include).toBeDefined();
|
||||
});
|
||||
|
||||
it('returns a single-element matrix for with a matrix "magento" for `latest`', () => {
|
||||
const result = getMatrixForKind("latest", project);
|
||||
expect(result.magento.length).toEqual(1);
|
||||
expect(result.include.length).toEqual(1);
|
||||
expect(result.magento[0]).toEqual(result.include[0].magento);
|
||||
});
|
||||
|
||||
it('returns a matrix for `currently-supported`', () => {
|
||||
const result = getMatrixForKind("currently-supported", project);
|
||||
|
||||
@@ -97,6 +118,13 @@ describe('getMatrixForKind for magento-open-source', () => {
|
||||
expect(result.include).toBeDefined();
|
||||
});
|
||||
|
||||
it('returns a single-element matrix for with a matrix "magento" for `nightly`', () => {
|
||||
const result = getMatrixForKind("nightly", project);
|
||||
expect(result.magento.length).toEqual(1);
|
||||
expect(result.include.length).toEqual(1);
|
||||
expect(result.magento[0]).toEqual(result.include[0].magento);
|
||||
});
|
||||
|
||||
it('returns a matrix for valid multiple `custom`', () => {
|
||||
const result = getMatrixForKind("custom", project, "magento/project-community-edition:2.4.2,magento/project-community-edition:2.4.3");
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"mage-os/project-community-edition": {
|
||||
"mage-os/project-community-edition": {
|
||||
"magento": "mage-os/project-community-edition",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -10,13 +10,13 @@
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-16T00:00:00+0000",
|
||||
"eol": "2028-10-17T00:00:00+0000"
|
||||
"release": "2026-01-20T00:00:00+0000",
|
||||
"eol": "2029-01-20T00:00:00+0000"
|
||||
},
|
||||
"mage-os/project-community-edition:next": {
|
||||
"magento": "mage-os/project-community-edition:next",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -24,13 +24,13 @@
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-16T00:00:00+0000",
|
||||
"eol": "2028-10-17T00:00:00+0000"
|
||||
"release": "2026-01-20T00:00:00+0000",
|
||||
"eol": "2029-01-20T00:00:00+0000"
|
||||
},
|
||||
"mage-os/project-community-edition:>=1.0 <1.1": {
|
||||
"magento": "mage-os/project-community-edition:>=1.0 <1.1",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -44,7 +44,7 @@
|
||||
"mage-os/project-community-edition:>=1.1 <1.2": {
|
||||
"magento": "mage-os/project-community-edition:>=1.1 <1.2",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -58,7 +58,7 @@
|
||||
"mage-os/project-community-edition:>=1.2 <1.3": {
|
||||
"magento": "mage-os/project-community-edition:>=1.2 <1.3",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -72,7 +72,7 @@
|
||||
"mage-os/project-community-edition:>=1.3 <1.4": {
|
||||
"magento": "mage-os/project-community-edition:>=1.2 <1.3",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -86,7 +86,7 @@
|
||||
"mage-os/project-community-edition:>=2.0 <2.1": {
|
||||
"magento": "mage-os/project-community-edition:>=2.0 <2.1",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -95,6 +95,20 @@
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-16T00:00:00+0000",
|
||||
"eol": "2028-10-17T00:00:00+0000"
|
||||
"eol": "2026-01-20T00:00:00+0000"
|
||||
},
|
||||
"mage-os/project-community-edition:>=2.1 <2.2": {
|
||||
"magento": "mage-os/project-community-edition:>=2.1 <2.2",
|
||||
"php": 8.4,
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2026-01-20T00:00:00+0000",
|
||||
"eol": "2029-01-20T00:00:00+0000"
|
||||
}
|
||||
}
|
||||
@@ -108,7 +108,7 @@
|
||||
"magento": "mage-os/project-community-edition:1.1.0",
|
||||
"upstream": "2.4.8",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -123,7 +123,7 @@
|
||||
"magento": "mage-os/project-community-edition:1.1.1",
|
||||
"upstream": "2.4.8",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -138,7 +138,7 @@
|
||||
"magento": "mage-os/project-community-edition:1.2.0",
|
||||
"upstream": "2.4.8-p1",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -153,7 +153,7 @@
|
||||
"magento": "mage-os/project-community-edition:1.3.0",
|
||||
"upstream": "2.4.8-p2",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -168,7 +168,7 @@
|
||||
"magento": "mage-os/project-community-edition:1.3.1",
|
||||
"upstream": "2.4.8-p2",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -183,7 +183,7 @@
|
||||
"magento": "mage-os/project-community-edition:2.0.0",
|
||||
"upstream": "2.4.8-p3",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -192,6 +192,21 @@
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-16T00:00:00+0000",
|
||||
"eol": "2028-10-17T00:00:00+0000"
|
||||
"eol": "2026-01-20T00:00:00+0000"
|
||||
},
|
||||
"mage-os/project-community-edition:2.1.0": {
|
||||
"magento": "mage-os/project-community-edition:2.1.0",
|
||||
"upstream": "2.4.8-p3",
|
||||
"php": 8.4,
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2026-01-20T00:00:00+0000",
|
||||
"eol": "2029-01-20T00:00:00+0000"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
"magento/project-community-edition:>=2.4.2 <2.4.3": {
|
||||
"magento": "magento/project-community-edition:>=2.4.2 <2.4.3",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.9.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -58,7 +58,7 @@
|
||||
"magento/project-community-edition:>=2.4.3 <2.4.4": {
|
||||
"magento": "magento/project-community-edition:>=2.4.3 <2.4.4",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -100,13 +100,13 @@
|
||||
"magento/project-community-edition:>=2.4.6 <2.4.7": {
|
||||
"magento": "magento/project-community-edition:>=2.4.6 <2.4.7",
|
||||
"php": 8.2,
|
||||
"composer": "2.2.25",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-04-08T00:00:00+0000",
|
||||
"eol": "2026-03-14T00:00:00+0000"
|
||||
@@ -114,13 +114,13 @@
|
||||
"magento/project-community-edition:>=2.4.7 <2.4.8": {
|
||||
"magento": "magento/project-community-edition:>=2.4.7 <2.4.8",
|
||||
"php": 8.3,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-04-08T00:00:00+0000",
|
||||
"eol": "2027-04-09T00:00:00+0000"
|
||||
@@ -128,47 +128,47 @@
|
||||
"magento/project-community-edition:>=2.4.8 <2.4.9": {
|
||||
"magento": "magento/project-community-edition:>=2.4.8 <2.4.9",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"opensearch": "opensearchproject/opensearch:3",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"valkey": "valkey/valkey:8.0",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-04-08T00:00:00+0000",
|
||||
"eol": "2028-04-09T00:00:00+0000"
|
||||
},
|
||||
"magento/project-community-edition": {
|
||||
"magento": "magento/project-community-edition:>=2.4.8 <2.4.9",
|
||||
"magento": "magento/project-community-edition",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"opensearch": "opensearchproject/opensearch:3",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"valkey": "valkey/valkey:8.0",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-04-08T00:00:00+0000",
|
||||
"eol": "2028-04-09T00:00:00+0000"
|
||||
},
|
||||
"magento/project-community-edition:next": {
|
||||
"magento": "magento/project-community-edition:>=2.4.8 <2.4.9",
|
||||
"magento": "magento/project-community-edition:@alpha",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"valkey": "valkey/valkey:8.0",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"opensearch": "opensearchproject/opensearch:3",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-04-08T00:00:00+0000",
|
||||
"eol": "2028-04-09T00:00:00+0000"
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
"magento/project-community-edition:2.4.2": {
|
||||
"magento": "magento/project-community-edition:2.4.2",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.9.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -100,7 +100,7 @@
|
||||
"magento/project-community-edition:2.4.2-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.2-p1",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.9.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -114,7 +114,7 @@
|
||||
"magento/project-community-edition:2.4.2-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.2-p2",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.9.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -128,7 +128,7 @@
|
||||
"magento/project-community-edition:2.4.3": {
|
||||
"magento": "magento/project-community-edition:2.4.3",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -142,7 +142,7 @@
|
||||
"magento/project-community-edition:2.4.3-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.3-p1",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -156,7 +156,7 @@
|
||||
"magento/project-community-edition:2.4.3-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.3-p2",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -170,7 +170,7 @@
|
||||
"magento/project-community-edition:2.4.3-p3": {
|
||||
"magento": "magento/project-community-edition:2.4.3-p3",
|
||||
"php": 7.4,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.8-management",
|
||||
@@ -184,7 +184,7 @@
|
||||
"magento/project-community-edition:2.4.4": {
|
||||
"magento": "magento/project-community-edition:2.4.4",
|
||||
"php": 8.1,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -198,7 +198,7 @@
|
||||
"magento/project-community-edition:2.4.4-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.4-p1",
|
||||
"php": 8.1,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -212,7 +212,7 @@
|
||||
"magento/project-community-edition:2.4.4-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.4-p2",
|
||||
"php": 8.1,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.16.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -380,7 +380,7 @@
|
||||
"magento/project-community-edition:2.4.5": {
|
||||
"magento": "magento/project-community-edition:2.4.5",
|
||||
"php": 8.1,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.17.5",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -394,7 +394,7 @@
|
||||
"magento/project-community-edition:2.4.5-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.5-p1",
|
||||
"php": 8.1,
|
||||
"composer": 2,
|
||||
"composer": "2.2.21",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.17.5",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -590,7 +590,7 @@
|
||||
"magento/project-community-edition:2.4.6": {
|
||||
"magento": "magento/project-community-edition:2.4.6",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:7.17.5",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -604,7 +604,7 @@
|
||||
"magento/project-community-edition:2.4.6-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p1",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -618,7 +618,7 @@
|
||||
"magento/project-community-edition:2.4.6-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p2",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
@@ -632,13 +632,13 @@
|
||||
"magento/project-community-edition:2.4.6-p3": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p3",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2023-10-10T00:00:00+0000",
|
||||
"eol": "2024-02-12T00:00:00+0000"
|
||||
@@ -646,13 +646,13 @@
|
||||
"magento/project-community-edition:2.4.6-p4": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p4",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2024-02-12T00:00:00+0000",
|
||||
"eol": "2024-04-09T00:00:00+0000"
|
||||
@@ -660,13 +660,13 @@
|
||||
"magento/project-community-edition:2.4.6-p5": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p5",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2024-04-09T00:00:00+0000",
|
||||
"eol": "2024-06-11T00:00:00+0000"
|
||||
@@ -674,13 +674,13 @@
|
||||
"magento/project-community-edition:2.4.6-p6": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p6",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2024-06-11T00:00:00+0000",
|
||||
"eol": "2024-08-13T00:00:00+0000"
|
||||
@@ -688,13 +688,13 @@
|
||||
"magento/project-community-edition:2.4.6-p7": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p7",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2024-08-13T00:00:00+0000",
|
||||
"eol": "2024-10-08T00:00:00+0000"
|
||||
@@ -702,13 +702,13 @@
|
||||
"magento/project-community-edition:2.4.6-p8": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p8",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2024-10-08T00:00:00+0000",
|
||||
"eol": "2025-02-11T00:00:00+0000"
|
||||
@@ -716,13 +716,13 @@
|
||||
"magento/project-community-edition:2.4.6-p9": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p9",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.9-management",
|
||||
"redis": "redis:7.0",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-02-11T00:00:00+0000",
|
||||
"eol": "2025-04-08T00:00:00+0000"
|
||||
@@ -730,7 +730,7 @@
|
||||
"magento/project-community-edition:2.4.6-p10": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p10",
|
||||
"php": 8.2,
|
||||
"composer": "2.2.25",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -744,13 +744,13 @@
|
||||
"magento/project-community-edition:2.4.6-p11": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p11",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.26",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-06-10T00:00:00+0000",
|
||||
"eol": "2025-08-12T00:00:00+0000"
|
||||
@@ -758,13 +758,13 @@
|
||||
"magento/project-community-edition:2.4.6-p12": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p12",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-08-12T00:00:00+0000",
|
||||
"eol": "2025-10-14T00:00:00+0000"
|
||||
@@ -772,13 +772,13 @@
|
||||
"magento/project-community-edition:2.4.6-p13": {
|
||||
"magento": "magento/project-community-edition:2.4.6-p13",
|
||||
"php": 8.1,
|
||||
"composer": "2.2.21",
|
||||
"composer": "2.2.26",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.5.3",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.3",
|
||||
"nginx": "nginx:1.22",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-14T00:00:00+0000",
|
||||
"eol": "2026-03-14T00:00:00+0000"
|
||||
@@ -786,7 +786,7 @@
|
||||
"magento/project-community-edition:2.4.7": {
|
||||
"magento": "magento/project-community-edition:2.4.7",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -800,7 +800,7 @@
|
||||
"magento/project-community-edition:2.4.7-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p1",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -814,7 +814,7 @@
|
||||
"magento/project-community-edition:2.4.7-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p2",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -828,7 +828,7 @@
|
||||
"magento/project-community-edition:2.4.7-p3": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p3",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -842,7 +842,7 @@
|
||||
"magento/project-community-edition:2.4.7-p4": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p4",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -856,7 +856,7 @@
|
||||
"magento/project-community-edition:2.4.7-p5": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p5",
|
||||
"php": 8.3,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.0",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -870,7 +870,7 @@
|
||||
"magento/project-community-edition:2.4.7-p6": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p6",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
@@ -884,13 +884,13 @@
|
||||
"magento/project-community-edition:2.4.7-p7": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p7",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.5",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-08-12T00:00:00+0000",
|
||||
"eol": "2025-10-14T00:00:00+0000"
|
||||
@@ -898,13 +898,13 @@
|
||||
"magento/project-community-edition:2.4.7-p8": {
|
||||
"magento": "magento/project-community-edition:2.4.7-p8",
|
||||
"php": 8.3,
|
||||
"composer": "2.7.4",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mariadb:10.6",
|
||||
"elasticsearch": "elasticsearch:8.11.4",
|
||||
"rabbitmq": "rabbitmq:3.13-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.5",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-14T00:00:00+0000",
|
||||
"eol": "2027-04-09T00:00:00+0000"
|
||||
@@ -912,7 +912,7 @@
|
||||
"magento/project-community-edition:2.4.8": {
|
||||
"magento": "magento/project-community-edition:2.4.8",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"elasticsearch": "elasticsearch:8.17.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
@@ -928,7 +928,7 @@
|
||||
"magento/project-community-edition:2.4.8-p1": {
|
||||
"magento": "magento/project-community-edition:2.4.8-p1",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
@@ -942,13 +942,13 @@
|
||||
"magento/project-community-edition:2.4.8-p2": {
|
||||
"magento": "magento/project-community-edition:2.4.8-p2",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"opensearch": "opensearchproject/opensearch:3",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-08-12T00:00:00+0000",
|
||||
"eol": "2025-10-14T00:00:00+0000"
|
||||
@@ -956,13 +956,13 @@
|
||||
"magento/project-community-edition:2.4.8-p3": {
|
||||
"magento": "magento/project-community-edition:2.4.8-p3",
|
||||
"php": 8.4,
|
||||
"composer": "2.8.8",
|
||||
"composer": "2.9.5",
|
||||
"mysql": "mysql:8.4",
|
||||
"opensearch": "opensearchproject/opensearch:2.19.1",
|
||||
"opensearch": "opensearchproject/opensearch:3",
|
||||
"rabbitmq": "rabbitmq:4.0-management",
|
||||
"redis": "redis:7.2",
|
||||
"varnish": "varnish:7.6",
|
||||
"nginx": "nginx:1.26",
|
||||
"nginx": "nginx:1.28",
|
||||
"os": "ubuntu-latest",
|
||||
"release": "2025-10-14T00:00:00+0000",
|
||||
"eol": "2028-04-09T00:00:00+0000"
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@ jobs:
|
||||
- 8.1
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v6
|
||||
- uses: graycoreio/github-actions-magento2/unit-test@main
|
||||
with:
|
||||
php_version: ${{ matrix.php_version }}
|
||||
|
||||
Reference in New Issue
Block a user