Skip to content

Commit

Permalink
ci: use .NET 9.0 SDK
Browse files Browse the repository at this point in the history
The version must be specified explicitly due to
actions/setup-dotnet#497 (comment)

Signed-off-by: Kevin Locke <[email protected]>
  • Loading branch information
kevinoid committed Nov 20, 2024
1 parent 857bc4d commit b228fd5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
- windows-latest
dotnet:
# Test using latest released SDK
# https://github.com/actions/setup-dotnet/pull/82
- '*'
# Note: Wildcard version resolves to latest LTS, not latest/STS
# https://github.com/actions/setup-dotnet/issues/497#issuecomment-2489645065
# - '*'
# Note: Must quote value to avoid 9.0 becoming 9, which silently fails.
- '9.0'
# Uncomment to build using an earlier SDK version:
# - 3.1
env:
Expand Down

0 comments on commit b228fd5

Please sign in to comment.