From 35562be5d92d0b83ca1b6590645f032fd58cd455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20B=C3=B6swetter?= Date: Wed, 21 Aug 2024 10:09:42 +0200 Subject: [PATCH 1/3] [BUGFIX] updates MigrateCommand to be compatible with symfony/console >= 7.0 --- Classes/Command/MigrateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Command/MigrateCommand.php b/Classes/Command/MigrateCommand.php index cbe64b7..7ee3a35 100644 --- a/Classes/Command/MigrateCommand.php +++ b/Classes/Command/MigrateCommand.php @@ -48,7 +48,7 @@ protected function configure() * @return int * @throws Exception */ - protected function execute(InputInterface $input, OutputInterface $output) + protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); From 630335eae5031039512a7324aae167a5244ef86f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20B=C3=B6swetter?= Date: Wed, 21 Aug 2024 10:12:13 +0200 Subject: [PATCH 2/3] [CLEANUP] updates github ci workflow -> removes on/schedule --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b1a811..7066ec8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,6 @@ name: CI on: push: pull_request: - schedule: - - cron: '5 5 * * *' jobs: testsuite: From 32fdaf0356eccb29ce7f7b5c05e5627c7e6446cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20B=C3=B6swetter?= Date: Wed, 21 Aug 2024 10:13:59 +0200 Subject: [PATCH 3/3] [TASK] adds PHP v8.3 to github workflow matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7066ec8..aa89b70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,4 +24,4 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.4', '8.0', '8.1', '8.2' ] + php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]