diff --git a/src/Commands/pm/SecurityUpdateCommands.php b/src/Commands/pm/SecurityUpdateCommands.php index 4ac6cd3e06..208ffdf0c4 100644 --- a/src/Commands/pm/SecurityUpdateCommands.php +++ b/src/Commands/pm/SecurityUpdateCommands.php @@ -101,9 +101,8 @@ public function suggestComposerCommand($updates): void */ protected function fetchAdvisoryComposerJson() { - // We use the v2 branch for now, as per https://github.com/drupal-composer/drupal-security-advisories/pull/11. $client = new Client(['handler' => $this->getStack()]); - $response = $client->get('https://raw.githubusercontent.com/drupal-composer/drupal-security-advisories/8.x-v2/composer.json'); + $response = $client->get('https://raw.githubusercontent.com/drupal-composer/drupal-security-advisories/9.x/composer.json'); $security_advisories_composer_json = json_decode($response->getBody(), true); return $security_advisories_composer_json; }