Skip to content

Commit f03232d

Browse files
committed
Try to fix CI
1 parent b30c54c commit f03232d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/actions/setup-php/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)