chore(deps): bump all NuGet references to latest stable + fix release job#67
Merged
Conversation
…version The windows-latest runner now preinstalls a newer nbgv (3.10.85) than the version this workflow pins (3.9.50, kept in sync with the Nerdbank.GitVersioning package), and `dotnet tool install` refuses to downgrade, failing the release job before it builds. Add --allow-downgrade so the exact pinned version installs regardless of what the runner ships. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Pin nbgv to the latest stable (3.10.85, matching the hosted runner) and keep the release CLI in sync via the same version plus --allow-downgrade, fixing the release job that broke when the runner preinstalled a newer nbgv. Also refresh the remaining out-of-date packages to their latest stable: Markdig 1.2.0 -> 1.3.2 Microsoft.Web.WebView2 1.0.3967.48 -> 1.0.4022.49 Microsoft.Windows.SDK.BuildTools 10.0.28000.1839 -> 10.0.28000.2270 Spectre.Console 0.56.0 -> 0.57.1 Microsoft.NET.Test.Sdk 18.6.0 -> 18.7.0 Spectre.Console.Cli stays at 0.55.0 (no newer stable). All test suites pass and the full solution builds clean on the Windows head. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Two things, both dependency-maintenance:
The
v1.1.0release run failed at Install Nerdbank.GitVersioning CLI:The
windows-latestrunner now preinstalls nbgv3.10.85, anddotnet tool install --version 3.9.50refuses to downgrade. Fixed by pinning nbgv to the latest stable 3.10.85 (in sync with theNerdbank.GitVersioningpackage) and adding--allow-downgradeas insurance against future runner drift.Refresh all NuGet references to latest stable (per request). Packages already at latest are untouched (
Microsoft.WindowsAppSDK2.2.0, theMicrosoft.Extensions/Microsoft.Data.Sqlite10.0.9 line,Velopack,xunit, etc.).Bumps
Spectre.Console.Clistays at0.55.0— no newer stable exists yet; it still builds and tests clean againstSpectre.Console0.57.1.Testing
Release follow-up
A tag-triggered workflow runs the workflow file at the tagged commit, so once this merges I'll move
v1.1.0onto the newmainHEAD (which includes the CI fix) and re-trigger the release. These deps therefore ship in 1.1.0 — changelog updated accordingly.🤖 Generated with Claude Code