diff --git a/get-new-tool-versions/parsers/verify-added-to-image/verify-xamarin-parser.psm1 b/get-new-tool-versions/parsers/verify-added-to-image/verify-xamarin-parser.psm1 index 4999217..c78adce 100644 --- a/get-new-tool-versions/parsers/verify-added-to-image/verify-xamarin-parser.psm1 +++ b/get-new-tool-versions/parsers/verify-added-to-image/verify-xamarin-parser.psm1 @@ -6,7 +6,7 @@ function Search-XamarinVersionsNotOnImage { $xamarinReleases = (Invoke-RestMethod $ReleasesUrl).items $filteredReleases = $xamarinReleases | Where-Object {$_.name -in $FilterProducts.name} | Sort-Object name | Select-Object name, version - $toolsetUrl = "https://raw.githubusercontent.com/actions/virtual-environments/main/images/macos/toolsets/toolset-11.json" + $toolsetUrl = "https://raw.githubusercontent.com/actions/virtual-environments/main/images/macos/toolsets/toolset-12.json" $uploadedReleases = (Invoke-RestMethod $toolsetUrl).xamarin $releasesOnImage = @() foreach ($FilterProduct in $FilterProducts) { @@ -16,4 +16,4 @@ function Search-XamarinVersionsNotOnImage { '{0,-15} : {1}' -f $_.name, $_.version } return $versionsToAdd -} \ No newline at end of file +}