From 1a2584d75e87e1d7bb16ec7e97b0df32e6074d37 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Aug 2026 02:08:56 +0000 Subject: [PATCH 1/4] Update dependencies from build 327141 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 10.0.0-beta.26412.103 -> 10.0.0-beta.26413.116) [[ commit created by automation ]] --- eng/Version.Details.props | 2 +- eng/Version.Details.xml | 6 +++--- eng/common/Get-GitHubAppToken.ps1 | 18 ++++++++++++++---- global.json | 2 +- 4 files changed, 19 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 60b2f2d0f9..eca7ee613f 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,7 +6,7 @@ This file should be imported by eng/Versions.props - 10.0.0-beta.26412.103 + 10.0.0-beta.26413.116 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d507facdd3..1ec9f63a98 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,12 +1,12 @@ - + - + https://github.com/dotnet/dotnet - 493580a515a01970cfe1da2c7dd589efbaf36996 + 5549d455e17cefdd7e202cb31fce756a0847efc9 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 index 6b5899d7a2..9c7e3dcd6a 100644 --- a/eng/common/Get-GitHubAppToken.ps1 +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -113,10 +113,13 @@ try { $installations = @() $page = 1 do { - $pageInstallations = @(Invoke-RestMethod ` + # Assign the response before wrapping it in @(). PowerShell otherwise + # preserves a top-level JSON array as one nested pipeline object. + $pageResponse = Invoke-RestMethod ` -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` -Headers $headers ` - -Method Get) + -Method Get + $pageInstallations = @($pageResponse) $installations += $pageInstallations $page++ } while ($pageInstallations.Count -eq 100) @@ -125,12 +128,19 @@ catch { Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." exit 1 } -$installation = $installations | Where-Object { $_.account.login -ieq $InstallationOwner } | Select-Object -First 1 -if (-not $installation) { +$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner }) +if ($matchingInstallations.Count -eq 0) { $found = ($installations | ForEach-Object { $_.account.login }) -join ', ' Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found" exit 1 } +if ($matchingInstallations.Count -ne 1) { + $matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds" + exit 1 +} +$installation = $matchingInstallations[0] +Write-Host "Using installation $($installation.id) for '$($installation.account.login)'." try { $tokenResponse = Invoke-RestMethod ` diff --git a/global.json b/global.json index 4f97a64339..bcf20b0564 100644 --- a/global.json +++ b/global.json @@ -8,7 +8,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26412.103" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26413.116" }, "sdk": { "version": "10.0.111" From 95ffe7c42c98efe374ec4defcc4f42e92a4846cc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 16 Aug 2026 02:06:42 +0000 Subject: [PATCH 2/4] Update dependencies from build 327247 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 10.0.0-beta.26413.116 -> 10.0.0-beta.26414.116) [[ commit created by automation ]] --- eng/Version.Details.props | 2 +- eng/Version.Details.xml | 6 +++--- global.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index eca7ee613f..a4a106dc15 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,7 +6,7 @@ This file should be imported by eng/Versions.props - 10.0.0-beta.26413.116 + 10.0.0-beta.26414.116 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1ec9f63a98..0db2d733cc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,12 +1,12 @@ - + - + https://github.com/dotnet/dotnet - 5549d455e17cefdd7e202cb31fce756a0847efc9 + 8e461aa6b46dbd52a5ec7533d8f4523454197a25 diff --git a/global.json b/global.json index bcf20b0564..2a7c099042 100644 --- a/global.json +++ b/global.json @@ -8,7 +8,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26413.116" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26414.116" }, "sdk": { "version": "10.0.111" From 684eca49f146259457dfe3dae712422d3f055824 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Aug 2026 02:09:07 +0000 Subject: [PATCH 3/4] Update dependencies from build 327431 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 10.0.0-beta.26414.116 -> 10.0.0-beta.26417.106) [[ commit created by automation ]] --- eng/Version.Details.props | 2 +- eng/Version.Details.xml | 6 +++--- global.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a4a106dc15..d2927c0a41 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,7 +6,7 @@ This file should be imported by eng/Versions.props - 10.0.0-beta.26414.116 + 10.0.0-beta.26417.106 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0db2d733cc..b6d1969995 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,12 +1,12 @@ - + - + https://github.com/dotnet/dotnet - 8e461aa6b46dbd52a5ec7533d8f4523454197a25 + 07280ccb1b0a3e0affb64ce3d07abe9eda48ed19 diff --git a/global.json b/global.json index 2a7c099042..4b1aea23d5 100644 --- a/global.json +++ b/global.json @@ -8,7 +8,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26414.116" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26417.106" }, "sdk": { "version": "10.0.111" From 3ee16a395f5dc6dc0bddb0f2e8eb663a9255b283 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 19 Aug 2026 02:09:04 +0000 Subject: [PATCH 4/4] Update dependencies from build 327605 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 10.0.0-beta.26417.106 -> 10.0.0-beta.26418.103) [[ commit created by automation ]] --- eng/Version.Details.props | 2 +- eng/Version.Details.xml | 6 +++--- global.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index d2927c0a41..04ddb8791c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,7 +6,7 @@ This file should be imported by eng/Versions.props - 10.0.0-beta.26417.106 + 10.0.0-beta.26418.103 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b6d1969995..da3bc65552 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,12 +1,12 @@ - + - + https://github.com/dotnet/dotnet - 07280ccb1b0a3e0affb64ce3d07abe9eda48ed19 + d247057ae32ae36e14905eb8e776304a84433554 diff --git a/global.json b/global.json index 4b1aea23d5..04cd36a173 100644 --- a/global.json +++ b/global.json @@ -8,7 +8,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26417.106" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26418.103" }, "sdk": { "version": "10.0.111"