Skip to content

Commit 025dc8f

Browse files
authored
ci: Update .NET version in GitHub Actions workflow
Updated the .NET version in the workflow to 10.0.x and removed older versions.
1 parent f425c6a commit 025dc8f

1 file changed

Lines changed: 2 additions & 14 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,10 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Setup .NET Core 3.0
18+
- name: Setup .NET 10
1919
uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: 3.0.x
22-
- name: Setup .NET Core 3.1
23-
uses: actions/setup-dotnet@v1
24-
with:
25-
dotnet-version: 3.1.x
26-
- name: Setup .NET 5
27-
uses: actions/setup-dotnet@v1
28-
with:
29-
dotnet-version: 5.0.x
30-
- name: Setup .NET 6
31-
uses: actions/setup-dotnet@v1
32-
with:
33-
dotnet-version: 6.0.x
21+
dotnet-version: 10.0.x
3422
- name: Clean dependencies and caches
3523
run: dotnet clean src --configuration ${{ matrix.configuration }} && dotnet nuget locals all --clear
3624
- name: Restore dependencies

0 commit comments

Comments
 (0)