Skip to content

Commit

Permalink
fix 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Smeagolworms4 committed Jun 17, 2023
1 parent d9d967f commit 0322924
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ runs:
shell: bash
run: |
if [ "${{ inputs.symfony_version }}" != "" ]; then composer require "symfony/symfony:${{ inputs.symfony_version }}" --no-update; fi;
if [ "${{ inputs.symfony_version }}" == "6.1" ]; then composer require "monolog/monolog" "masterminds/html5" --no-update; fi; # Fix dependencie on SF 6.1
if [ "${{ inputs.symfony_version }}" == "6.2" ]; then composer require "monolog/monolog" "masterminds/html5" --no-update; fi; # Fix dependencie on SF 6.2
if [[ "$(echo "${{ inputs.symfony_version }} >= 6.1" | bc -l)" -eq 1 ]]; then composer require "monolog/monolog" "masterminds/html5" --no-update; fi; # Fix dependencie on SF >= 6.1
if [ "${{ inputs.php_version }}" == "7.2" ]; then composer require --dev "phpunit/phpunit:8.5" --no-update; fi;
composer update --prefer-dist --no-interaction $composer_flags
Expand Down

0 comments on commit 0322924

Please sign in to comment.