We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f081e9 commit f83957fCopy full SHA for f83957f
src/Commands/pm/SecurityUpdateCommands.php
@@ -74,7 +74,8 @@ public function suggestComposerCommand($updates)
74
protected function fetchAdvisoryComposerJson()
75
{
76
try {
77
- $response_body = file_get_contents('https://raw.githubusercontent.com/drupal-composer/drupal-security-advisories/8.x/composer.json');
+ // We use the v2 branch for now, as per https://github.com/drupal-composer/drupal-security-advisories/pull/11.
78
+ $response_body = file_get_contents('https://raw.githubusercontent.com/drupal-composer/drupal-security-advisories/8.x-v2/composer.json');
79
} catch (Exception $e) {
80
throw new Exception("Unable to fetch drupal-security-advisories information.");
81
}
0 commit comments