File tree Expand file tree Collapse file tree
.github/actions/setup-php Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ runs:
2525 - name : Checkout
2626 uses : actions/checkout@v5
2727
28- - name : Setup PHP ${{ matrix .php }}
28+ - name : Setup PHP ${{ inputs .php }}
2929 uses : shivammathur/setup-php@v2
3030 with :
31- php-version : ${{ matrix .php }}
31+ php-version : ${{ inputs .php }}
3232 ini-values : " memory_limit=-1"
3333
3434 - name : Validate Composer
@@ -42,12 +42,12 @@ runs:
4242 uses : actions/cache@v5
4343 with :
4444 path : ${{ steps.composer-cache.outputs.dir }}
45- key : ${{ runner.os }}-${{ matrix .php }}-composer-${{ hashFiles('**/composer.json') }}
46- restore-keys : ${{ runner.os }}-${{ matrix .php }}-composer-
45+ key : ${{ runner.os }}-${{ inputs .php }}-composer-${{ hashFiles('**/composer.json') }}
46+ restore-keys : ${{ runner.os }}-${{ inputs .php }}-composer-
4747
4848 - name : Install Dependencies
4949 uses : nick-invision/retry@v4
5050 with :
5151 timeout_minutes : 5
5252 max_attempts : 3
53- command : composer update --prefer-${{ matrix .stability }} --prefer-dist --no-interaction --no-progress
53+ command : composer update --prefer-${{ inputs .stability }} --prefer-dist --no-interaction --no-progress
You can’t perform that action at this time.
0 commit comments