File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5858 - name : Grab PHPUnit version
5959 id : phpunit_version
6060 # yamllint disable-line rule:line-length
61- run : echo "VERSION=$("vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
61+ run : echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
6262
6363 - name : " DEBUG: Show grabbed version"
6464 run : echo ${{ steps.phpunit_version.outputs.VERSION }}
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ jobs:
200200 - name : Grab PHPUnit version
201201 id : phpunit_version
202202 # yamllint disable-line rule:line-length
203- run : echo "VERSION=$("vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
203+ run : echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
204204
205205 - name : " DEBUG: Show grabbed version"
206206 run : echo ${{ steps.phpunit_version.outputs.VERSION }}
@@ -316,6 +316,7 @@ jobs:
316316
317317 - name : Determine PHPUnit config file to use
318318 id : phpunit_config
319+ shell : bash
319320 run : |
320321 if [ "${{ startsWith( steps.phpunit_version.outputs.VERSION, '11.' ) }}" == "true" ]; then
321322 echo 'FILE=phpunit.xml.dist' >> "$GITHUB_OUTPUT"
You can’t perform that action at this time.
0 commit comments