From ab8180dbd510d05066c9411889326e3ee50ffa5c Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Fri, 28 Jun 2024 03:53:02 +0900 Subject: [PATCH] Update PHP versions in GitHub workflow This commit reduces the number of PHP versions used in the project's GitHub workflow. It drops support for PHP 8.2 and 8.3, focusing only on PHP 8.0 and 8.1. This change should streamline the build process and reduce potential compatibility issues. --- .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 3c8037a..b7bc31b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - php-version: ['8.0', '8.1', '8.2', '8.3'] + php-version: ['8.0', '8.1'] steps: - name: Checkout code