[main] Update dependencies from dotnet/arcade-services, dotnet/dnceng - #17348
[main] Update dependencies from dotnet/arcade-services, dotnet/dnceng#17348dotnet-maestro[bot] wants to merge 2 commits into
Conversation
…ild 20260813.1 On relative base path root Microsoft.DotNet.DarcLib , Microsoft.DotNet.ProductConstructionService.Client From Version 1.1.0-beta.26374.1 -> To Version 1.1.0-beta.26413.1
…814.1 On relative base path root Microsoft.DncEng.SecretManager From Version 1.1.0-beta.26407.1 -> To Version 1.1.0-beta.26414.1
🔍 Build Failure AnalysisSummary — The dependency bump of Root cause:
|
| Code | File:Line | Message |
|---|---|---|
CS1503 |
PublishBuildToMaestro.cs:362 |
Argument 2: cannot convert from System.Threading.CancellationToken to bool? |
CS1503 |
PublishBuildToMaestro.cs:380 |
Argument 2: cannot convert from System.Threading.CancellationToken to bool? |
Proposed fix
In src/Microsoft.DotNet.Build.Tasks.Feed/src/PublishBuildToMaestro.cs, change both call sites to use the named cancellationToken: parameter (this also passes null/default for the new includeAssetLocation parameter, which is the appropriate behavior):
// Line 362
- producingBuild = await client.Builds.GetBuildAsync(asset.BuildId, cancellationToken);
+ producingBuild = await client.Builds.GetBuildAsync(asset.BuildId, cancellationToken: cancellationToken);
// Line 380
- var build = await client.Builds.GetBuildAsync(buildId.Value, cancellationToken);
+ var build = await client.Builds.GetBuildAsync(buildId.Value, cancellationToken: cancellationToken);Note: PublishBuildToMaestro.cs is not part of this PR's diff — the fix needs to be committed separately (e.g., pushed to this branch by a maintainer, or merged as an additional commit alongside the dependency update).
Build overview
- Build: FAILED (108.5s)
- MSBuild: 18.9.0-preview
- Projects: 82 total, 3 failed
- Failed projects:
Build.proj→Arcade.slnx→Microsoft.DotNet.Build.Tasks.Feed.csproj - Errors: 3 (2× CS1503 + top-level "Build failed.")
- Both Linux Debug and Windows Release legs failed with identical errors
All MSBuild errors (2)
| Code | Project | File:Line | Message |
|---|---|---|---|
CS1503 |
Microsoft.DotNet.Build.Tasks.Feed |
PublishBuildToMaestro.cs:362 |
Argument 2: cannot convert from System.Threading.CancellationToken to bool? |
CS1503 |
Microsoft.DotNet.Build.Tasks.Feed |
PublishBuildToMaestro.cs:380 |
Argument 2: cannot convert from System.Threading.CancellationToken to bool? |
🤖 Generated by the Build Failure Analysis workflow using (a href="(dev.azure.com/redacted) · commit d191eb4
🤖 Automated content by GitHub Copilot. Generated by the Build Failure Analysis workflow.{ai_credits_suffix} · [◷]( · ◷)
This pull request updates the following dependencies
From https://github.com/dotnet/arcade-services
From https://github.com/dotnet/dnceng