ci: Update GitHub Actions workflow for .NET 10 and multi-targeting#5
Merged
arafattehsin merged 1 commit intomainfrom Jan 21, 2026
Merged
Conversation
- Upgrade dotnet-version from 3.1.x to 10.0.x - Update actions/checkout from v2 to v4 - Update actions/setup-dotnet from v1 to v4 - Switch to ubuntu-latest for faster builds - Fix path separators for cross-platform compatibility
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions workflow to support the project's new multi-targeting setup for .NET Standard 2.0, .NET 8, and .NET 10. The changes modernize the CI/CD pipeline by upgrading dependencies and improving cross-platform compatibility.
Changes:
- Upgraded .NET SDK from 3.1.x to 10.0.x to support building all target frameworks including net10.0
- Updated GitHub Actions to latest versions (checkout v4, setup-dotnet v4)
- Migrated from Windows to Ubuntu runner with corresponding path separator fixes
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
Updates the NuGet deployment workflow to support the new multi-targeting setup.
Changes
dotnet-versionfrom3.1.xto10.0.xactions/checkoutfromv2tov4actions/setup-dotnetfromv1tov4ubuntu-latestfor faster builds\→/)Why
The project now multi-targets
netstandard2.0,net8.0, andnet10.0, which requires .NET 10 SDK to build all targets.Testing