-
-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Description
If php_version is not set, please use the OS php version and extensions.
So in this example php-actions/composer is using php 8.5 even though the OS is using php 8.3
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- uses: php-actions/composer@v6
...This can be fixed by simply adding 'php_version' to the composer step - however it would be nice if it just defaulted to the OS version
- uses: php-actions/composer@v6
with:
php_version: "8.3" # if this is unset - it's using the latest php version (8.5 atm)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels