We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 857bc4d commit b228fd5Copy full SHA for b228fd5
.github/workflows/dotnet.yml
@@ -33,8 +33,11 @@ jobs:
33
- windows-latest
34
dotnet:
35
# Test using latest released SDK
36
- # https://github.com/actions/setup-dotnet/pull/82
37
- - '*'
+ # Note: Wildcard version resolves to latest LTS, not latest/STS
+ # https://github.com/actions/setup-dotnet/issues/497#issuecomment-2489645065
38
+ # - '*'
39
+ # Note: Must quote value to avoid 9.0 becoming 9, which silently fails.
40
+ - '9.0'
41
# Uncomment to build using an earlier SDK version:
42
# - 3.1
43
env:
0 commit comments