Skip to content

Commit 555c44c

Browse files
committed
Update GitHub actions to .NET 10
1 parent 9a9d776 commit 555c44c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup .NET
3030
uses: actions/setup-dotnet@v4
3131
with:
32-
dotnet-version: 9.x.x
32+
dotnet-version: 10.x.x
3333
# Create the NuGet package in the folder from the environment variable NuGetDirectory
3434
- run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} /p:ContinuousIntegrationBuild=true
3535

@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup .NET
5050
uses: actions/setup-dotnet@v4
5151
with:
52-
dotnet-version: 9.x.x
52+
dotnet-version: 10.x.x
5353

5454
# Download the NuGet package created in the previous job
5555
- uses: actions/download-artifact@v4.1.7
@@ -74,7 +74,7 @@ jobs:
7474
- name: Setup .NET
7575
uses: actions/setup-dotnet@v4
7676
with:
77-
dotnet-version: 9.x.x
77+
dotnet-version: 10.x.x
7878
- name: Run tests
7979
run: dotnet test --configuration Release
8080

@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup .NET Core
9696
uses: actions/setup-dotnet@v4
9797
with:
98-
dotnet-version: 9.x.x
98+
dotnet-version: 10.x.x
9999

100100
# Publish all NuGet packages to NuGet.org
101101
# Use --skip-duplicate to prevent errors if a package with the same version already exists.

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: 9.x.x
16+
dotnet-version: 10.x.x
1717
- name: Restore dependencies
1818
run: dotnet restore
1919
- name: Build

0 commit comments

Comments
 (0)