From 18684fab41c520091d7c22ee4f17981f5237c9ee Mon Sep 17 00:00:00 2001 From: kozo Date: Fri, 15 May 2026 12:33:00 +0900 Subject: [PATCH 1/2] =?UTF-8?q?PHP=E3=81=AE=E5=AE=9F=E8=A1=8C=E3=82=92upda?= =?UTF-8?q?te-alternatives=20=E3=81=8B=E3=82=89=20shivammathur/setup-php?= =?UTF-8?q?=20=E3=81=AB=E7=BD=AE=E3=81=8D=E6=8F=9B=E3=81=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/mysql_ci.yml | 6 ++++-- .github/workflows/postgres_ci.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mysql_ci.yml b/.github/workflows/mysql_ci.yml index 3fd1cf8..c93dd3f 100644 --- a/.github/workflows/mysql_ci.yml +++ b/.github/workflows/mysql_ci.yml @@ -33,8 +33,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup PHP 8.1 - run: sudo update-alternatives --set php /usr/bin/php8.1 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.2' - name: php check run: php -v diff --git a/.github/workflows/postgres_ci.yml b/.github/workflows/postgres_ci.yml index b444074..ded84cc 100644 --- a/.github/workflows/postgres_ci.yml +++ b/.github/workflows/postgres_ci.yml @@ -26,8 +26,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup PHP 8.1 - run: sudo update-alternatives --set php /usr/bin/php8.1 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.2' - name: php check run: php -v From 99ad3f3681f326ebe0f424d85430ba9e6bf03807 Mon Sep 17 00:00:00 2001 From: kozo Date: Fri, 15 May 2026 12:36:13 +0900 Subject: [PATCH 2/2] =?UTF-8?q?AbstractMigration=20=E3=82=92BaseMigration?= =?UTF-8?q?=20=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/Migrations/20231107000000_CreateDataBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Migrations/20231107000000_CreateDataBase.php b/config/Migrations/20231107000000_CreateDataBase.php index 21d9b53..90eb3d6 100644 --- a/config/Migrations/20231107000000_CreateDataBase.php +++ b/config/Migrations/20231107000000_CreateDataBase.php @@ -1,9 +1,9 @@