Skip to content

Commit

Permalink
fix workflow version comparison issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bepsvpt committed Feb 15, 2023
1 parent 745fbba commit c48d668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
run: composer require --no-update illuminate/support:~${{ matrix.laravel }}

- name: Restrict phpunit/phpunit version to fix dependencies issue for Laravel <= 5.4
if: ${{ '5.4.0' >= matrix.laravel }}
if: ${{ contains(fromJSON('["5.4.0", "5.3.0", "5.2.0", "5.1.0"]'), matrix.laravel) }}
run: composer require --dev --no-update phpunit/phpunit:~5.7

- name: Install dependencies
Expand Down

0 comments on commit c48d668

Please sign in to comment.