Skip to content

Commit

Permalink
Update PHP versions in GitHub workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
koriym committed Jun 27, 2024
1 parent c03852e commit ab8180d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab8180d

Please sign in to comment.