Skip to content

Commit 1a284d6

Browse files
committed
Install .NET 11 in GHA
1 parent ed881cb commit 1a284d6

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
8.0.*
5151
9.0.*
5252
10.0.*
53+
- name: Setup .NET 11 Preview
54+
uses: actions/setup-dotnet@v5
55+
with:
56+
dotnet-version: 11.0.*
57+
dotnet-quality: preview
5358
- name: Show installed versions
5459
shell: pwsh
5560
run: |
@@ -166,6 +171,11 @@ jobs:
166171
8.0.*
167172
9.0.*
168173
10.0.*
174+
- name: Setup .NET 11 Preview
175+
uses: actions/setup-dotnet@v5
176+
with:
177+
dotnet-version: 11.0.*
178+
dotnet-quality: preview
169179
- name: Git checkout
170180
uses: actions/checkout@v6
171181
with:
@@ -229,6 +239,11 @@ jobs:
229239
8.0.*
230240
9.0.*
231241
10.0.*
242+
- name: Setup .NET 11 Preview
243+
uses: actions/setup-dotnet@v5
244+
with:
245+
dotnet-version: 11.0.*
246+
dotnet-quality: preview
232247
- name: Git checkout
233248
uses: actions/checkout@v6
234249
with:

.github/workflows/codeql.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
8.0.*
3434
9.0.*
3535
10.0.*
36+
- name: Setup .NET 11 Preview
37+
uses: actions/setup-dotnet@v5
38+
with:
39+
dotnet-version: 11.0.*
40+
dotnet-quality: preview
3641
- name: Git checkout
3742
uses: actions/checkout@v6
3843
with:

.github/workflows/qodana.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
8.0.*
2929
9.0.*
3030
10.0.*
31+
- name: Setup .NET 11 Preview
32+
uses: actions/setup-dotnet@v5
33+
with:
34+
dotnet-version: 11.0.*
35+
dotnet-quality: preview
3136
- name: Git checkout
3237
uses: actions/checkout@v6
3338
with:

0 commit comments

Comments
 (0)