Skip to content

Commit

Permalink
Update PHP version in GitHub workflows
Browse files Browse the repository at this point in the history
This commit updates the specified PHP version in the continuous integration, static analysis, and coding standards GitHub workflows. The PHP version has been upgraded from 8.1 to 8.3, allowing the project to use the new features and optimizations from the updated version.
  • Loading branch information
koriym committed Jun 14, 2024
1 parent 38f12ca commit c35da81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
tools: cs2pr
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
operating-system:
- ubuntu-latest
php-version:
- 8.1
- 8.3
env:
MA_DB_HOST: localhost
MA_DB_NAME: maalps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
tools: cs2pr
coverage: none

Expand Down

0 comments on commit c35da81

Please sign in to comment.