CI runs against Drupal 11.3 even when core_version_requirement is bumped to ^11.4
## Problem When a module bumps its `core_version_requirement` to `^11.4 || ^12`, the CI pipeline still runs the default job against Drupal 11.3, which is no longer the current stable release (11.4 was released on July 1st, 2026), causing test failures unrelated to the module's code. In this case, kernel tests that install a sub-module fail with: ``` Drupal\Core\Extension\MissingDependencyException: Unable to install modules: module '[module_name]' is incompatible with this version of Drupal core. ``` ## Steps to reproduce 1. Set `core_version_requirement: ^11.4 || ^12` in your module's `.info.yml` 2. Trigger a CI pipeline 3. The PHPUnit job runs against Drupal 11.3 instead of 11.4 ## Expected behavior The `current` variant's PHPUnit job should run against the actual current stable release of Drupal core (11.4 at the time of writing). ## Proposed solution Update the `current` variant to point to Drupal 11.4.
issue