Skip to content

Commit b135684

Browse files
committed
Update GitHub workflows to provide latest .NET SDKs
1 parent a3fc47b commit b135684

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,20 @@ jobs:
4545
echo "BUILD_VERSION=$version" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
4646
shell: pwsh
4747

48-
- name: Setup .NET 5.0
48+
- name: Setup .NET 6.0
4949
uses: actions/setup-dotnet@v1
5050
with:
51-
dotnet-version: 5.0.x
51+
dotnet-version: 6.0.x
5252

53-
- name: Setup .NET 6.0
53+
- name: Setup .NET 7.0
5454
uses: actions/setup-dotnet@v1
5555
with:
56-
dotnet-version: 6.0.x
56+
dotnet-version: 7.0.x
57+
58+
- name: Setup .NET 8.0
59+
uses: actions/setup-dotnet@v1
60+
with:
61+
dotnet-version: 8.0.x
5762

5863
- name: Restore dependencies
5964
run: dotnet restore $SOLUTION

.github/workflows/docs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ jobs:
2929
with:
3030
dotnet-version: 6.0.x
3131

32+
- name: Setup .NET 7.0
33+
uses: actions/setup-dotnet@v1
34+
with:
35+
dotnet-version: 7.0.x
36+
37+
- name: Setup .NET 8.0
38+
uses: actions/setup-dotnet@v1
39+
with:
40+
dotnet-version: 8.0.x
41+
3242
- name: Setup MSBuild
3343
uses: microsoft/setup-msbuild@v1.0.2
3444

0 commit comments

Comments
 (0)