Skip to content

Commit 4f55190

Browse files
authored
Update dotnet.yml
1 parent 7441b2c commit 4f55190

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,22 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Setup .NET
20-
uses: actions/setup-dotnet@v4
19+
- name: Setup .NET 6.0
20+
uses: actions/setup-dotnet@v1
2121
with:
22-
dotnet-version: 9.0.x
22+
dotnet-version: '6.0.x'
23+
- name: Setup .NET 7.0
24+
uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: '7.0.x'
27+
- name: Setup .NET 8.0
28+
uses: actions/setup-dotnet@v1
29+
with:
30+
dotnet-version: '8.0.x'
31+
- name: Setup .NET 9.0
32+
uses: actions/setup-dotnet@v1
33+
with:
34+
dotnet-version: '9.0.x'
2335
- name: Restore dependencies
2436
run: dotnet restore
2537
- name: Build

0 commit comments

Comments
 (0)