From a54761ac464f1e241f0b24e14ec55d258775cea9 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Thu, 9 Feb 2023 09:39:00 +0200 Subject: [PATCH 1/2] Upgrade lib-innerbrowser and verify libraries to versions that support PHPUnit 10 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4d53eb2..ee7c669 100644 --- a/composer.json +++ b/composer.json @@ -16,16 +16,16 @@ "name":"Michael Bodnarchuk" } ], - "minimum-stability": "dev", + "minimum-stability": "RC", "require": { "php": "^8.0", - "codeception/codeception": "^5.0.0-RC6", - "codeception/lib-innerbrowser": "^3.0" + "codeception/codeception": "^5.0.8", + "codeception/lib-innerbrowser": "^3.0 | ^4.0" }, "require-dev": { "yiisoft/yii2": "dev-master", "yiisoft/yii2-app-advanced": "dev-master", - "codeception/verify": "^2.2", + "codeception/verify": "^3.0", "codemix/yii2-localeurls": "^1.7", "codeception/module-asserts": "^3.0", "codeception/module-filesystem": "^3.0" From 81d21d31217593ebee84845b49a9592c9beb7a68 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Thu, 9 Feb 2023 09:39:42 +0200 Subject: [PATCH 2/2] Update Github actions --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1203ebb..02e24fb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,11 +8,11 @@ jobs: strategy: matrix: - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2] steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2