From f3eebbec17a3cc606719b954c580011dd887ecdc Mon Sep 17 00:00:00 2001 From: Andreas Kremsler Date: Mon, 18 Nov 2024 12:20:38 +0100 Subject: [PATCH 1/3] support of sylius 1.14 --- .github/workflows/build.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4353797f..ba4a7ae7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: matrix: php: [8.0, 8.1] symfony: [^5.4, ^6.0] - sylius: [~1.11.0, ~1.12.0, ~1.13.0] + sylius: [~1.11.0, ~1.12.0, ~1.13.0, ~1.14.0] node: [18.x] mysql: [5.7] diff --git a/composer.json b/composer.json index 4ada99cc..666a745c 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^8.0", - "sylius/sylius": "~1.11.0 || ~1.12.0 || ~1.13.0", + "sylius/sylius": "~1.11.0 || ~1.12.0 || ~1.13.0 || ~1.14.0", "portphp/portphp": "^1.2", "queue-interop/queue-interop": "^0.6.2 || ^0.7 || ^0.8", "symfony/stopwatch": "^5.2 || ^6.0" From 98cb2a60f924d6581803d11c65f95cbd74a1dc55 Mon Sep 17 00:00:00 2001 From: Andreas Kremsler Date: Mon, 18 Nov 2024 12:26:39 +0100 Subject: [PATCH 2/3] actions/upload-artifact@v4 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba4a7ae7..7d380be7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -177,7 +177,7 @@ jobs: - name: Upload Behat logs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: failure() with: name: Behat logs From c64c9c41f282d2302a4ce01a6cc162538524d3ba Mon Sep 17 00:00:00 2001 From: Andreas Kremsler Date: Mon, 18 Nov 2024 12:35:58 +0100 Subject: [PATCH 3/3] php 8.1 --- .github/workflows/build.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d380be7..01e9aa6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] + php: [8.1] symfony: [^5.4, ^6.0] sylius: [~1.11.0, ~1.12.0, ~1.13.0, ~1.14.0] node: [18.x] diff --git a/composer.json b/composer.json index 666a745c..36a2e1d1 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "import / export plugin for Sylius.", "license": "MIT", "require": { - "php": "^8.0", + "php": "^8.1", "sylius/sylius": "~1.11.0 || ~1.12.0 || ~1.13.0 || ~1.14.0", "portphp/portphp": "^1.2", "queue-interop/queue-interop": "^0.6.2 || ^0.7 || ^0.8",