-
-
Notifications
You must be signed in to change notification settings - Fork 379
CI pipeline for 9.2
is broken
#1038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@localheinz Can you help me? Thanks! |
1 task
I just ran into this issue on the |
Taking another 👀, @sebastianbergmann! |
Thank you, @localheinz! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Before c001486, the
composer.json
file of this project configured a dependency on"phpunit/phpunit": "^9.3"
.I noticed that on GitHub Actions, Composer would install PHPUnit 9.4.4 instead of PHPUnit 9.6.19 (which is the latest version that fulfills the
^9.3
version constraint. See https://github.com/sebastianbergmann/php-code-coverage/actions/runs/9722443548/job/26836345492#step:6:27.I changed this version constraint from
^9.3
to^9.6
in c001486 in order to force an error on GitHub Actions when Composer installs the dependencies and provides an error message that explains why PHPUnit 9.4.4 was installed before:COMPOSER_ROOT_VERSION
is set to9.2-dev
in the GitHub Actions configuration and abranch-alias
is configured incomposer.json
.This problem does not exist on the
10.1
andmain
branches, but I fail to see a difference between the branches where this works and the9.2
branch where it does not work.The text was updated successfully, but these errors were encountered: