We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ac4d6 commit 1d260fdCopy full SHA for 1d260fd
.github/workflows/dotnet.yml
@@ -66,10 +66,18 @@ jobs:
66
67
steps:
68
- uses: actions/checkout@v3
69
- - name: Setup .NET ${{ matrix.netversion }}
+ - name: Setup .NET 7
70
uses: actions/setup-dotnet@v3
71
with:
72
- dotnet-version: ${{ matrix.netversion }}.x
+ dotnet-version: 7.x
73
+ - name: Setup .NET 8
74
+ uses: actions/setup-dotnet@v3
75
+ with:
76
+ dotnet-version: 8.x
77
+ - name: Setup .NET 9
78
79
80
+ dotnet-version: 9.x
81
- name: Fix libssl
82
if: ${{ matrix.netversion == 5 && matrix.os == 'ubuntu-latest' }}
83
run: |
0 commit comments