Skip to content

Commit 8da426d

Browse files
committed
Swap to Net8 in build scripts
1 parent 1863f39 commit 8da426d

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/ci-build.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,10 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v2
21-
- name: Setup .NET 6
21+
- name: Setup .NET 8
2222
uses: actions/setup-dotnet@v1
2323
with:
24-
dotnet-version: 6.0.*
25-
- name: Setup .NET 7
26-
uses: actions/setup-dotnet@v1
27-
with:
28-
dotnet-version: 7.0.*
24+
dotnet-version: 8.0.*
2925
- name: Install dependencies
3026
run: |
3127
dotnet clean -c Release && dotnet nuget locals all --clear

.github/workflows/ci-publish.yml

+8
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252

5353
steps:
5454
- uses: actions/checkout@v2
55+
- name: Setup .NET 8
56+
uses: actions/setup-dotnet@v1
57+
with:
58+
dotnet-version: 8.0.*
5559
- name: Install dependencies
5660
run: |
5761
dotnet clean -c Release && dotnet nuget locals all --clear
@@ -74,6 +78,10 @@ jobs:
7478
- uses: actions/checkout@v2
7579
with:
7680
fetch-depth: 0
81+
- name: Setup .NET 8
82+
uses: actions/setup-dotnet@v1
83+
with:
84+
dotnet-version: 8.0.*
7785
- name: Install dependencies
7886
run: |
7987
dotnet clean -c Release && dotnet nuget locals all --clear

0 commit comments

Comments
 (0)