From e5bed4bf336b015d359ec70027b6efbb0d8f8e7c Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Mon, 24 Jan 2022 22:17:43 +0100 Subject: [PATCH] Update SecurityUpdateCommands.php --- src/Commands/pm/SecurityUpdateCommands.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; }