From 7697d0605f4ac9c1281886efe488af6f01ecf2b6 Mon Sep 17 00:00:00 2001 From: Arkadiusz Radziewicz Date: Mon, 10 Jul 2023 13:32:59 +0200 Subject: [PATCH 1/3] OP-175: Update ubuntu version, remove older versions --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0895bf0..b8f83b3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,16 +13,16 @@ on: jobs: tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 name: "Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" strategy: fail-fast: false matrix: - php: ["8.0", "7.4"] + php: ["8.0"] symfony: ["^4.4", "^5.2"] - sylius: ["~1.9", "~1.10.0", "~1.11.0"] + sylius: ["~1.11.0"] node: ["12.x"] mysql: ["8.0"] From 19522ec2ce8d80ba0b8b23c0014fa9ba2c27f7fd Mon Sep 17 00:00:00 2001 From: Arkadiusz Radziewicz Date: Mon, 10 Jul 2023 13:33:12 +0200 Subject: [PATCH 2/3] OP-175: Update build label on README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb53507..3d39c06 100755 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Latest Version][ico-version]][link-packagist] [![Latest Unstable Version][ico-unstable-version]][link-packagist] [![Software License][ico-license]](LICENSE) -[![Build Status][ico-github-actions]][link-github-actions] +[![Build Status](https://github.com/BitBagCommerce/SyliusCalloutPlugin/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/BitBagCommerce/SyliusCalloutPlugin/actions/workflows/build.yml) [![Quality Score][ico-code-quality]][link-code-quality] The callout plugin for [Sylius](https://sylius.com/) allows you to configure nice badges for different set of products From c7af667c07c01cada4325cf53df1b465ed34df68 Mon Sep 17 00:00:00 2001 From: Arkadiusz Radziewicz Date: Mon, 10 Jul 2023 13:36:04 +0200 Subject: [PATCH 3/3] OP-175: Enable symfony/flex scripts for composer in build --- .github/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b8f83b3..b1982e5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -121,6 +121,7 @@ jobs: name: Restrict Symfony version if: matrix.symfony != '' run: | + composer global config --no-plugins allow-plugins.symfony/flex true composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.10" composer config extra.symfony.require "${{ matrix.symfony }}"