Skip to content

Commit

Permalink
Update Github Actions configuration for PHP versions
Browse files Browse the repository at this point in the history
The commit updates the configuration of the continuous integration and coding standards Github Actions. Notably, the PHP version is updated to 8.3 in both configurations. It also changes dependency options in the continuous integration configuration for PHP 8.2 and introduces new configurations for PHP 8.3.
  • Loading branch information
koriym committed May 14, 2024
1 parent c94e98c commit a32d4fd
Show file tree
Hide file tree
Showing 2 changed files with 9 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 @@ -9,4 +9,4 @@ jobs:
cs:
uses: ray-di/.github/.github/workflows/coding-standards.yml@v1
with:
php_version: 8.1
php_version: 8.3
10 changes: 8 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,16 @@ jobs:
- php-version: 8.1
os: macos-latest
- php-version: 8.2
dependencies: lowest-ignore
dependencies: lowest
os: ubuntu-latest
- php-version: 8.2
dependencies: highest-ignore
dependencies: highest
os: ubuntu-latest
- php-version: 8.3
dependencies: highest
os: ubuntu-latest
- php-version: 8.3
dependencies: lowest
os: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit a32d4fd

Please sign in to comment.