Skip to content

Commit 6b3b595

Browse files
committed
Upgrade CI to use .NET 10
1 parent e024a15 commit 6b3b595

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup .NET
3636
uses: actions/setup-dotnet@v5
3737
with:
38-
dotnet-version: 8.0.x
38+
dotnet-version: 10.0.x
3939
- name: Restore dependencies
4040
run: dotnet restore
4141
- name: Build
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup .NET
5555
uses: actions/setup-dotnet@v5
5656
with:
57-
dotnet-version: 8.0.x
57+
dotnet-version: 10.0.x
5858
- name: Restore build artifacts
5959
uses: actions/cache/restore@v5
6060
with:
@@ -81,7 +81,7 @@ jobs:
8181
- name: Setup .NET
8282
uses: actions/setup-dotnet@v5
8383
with:
84-
dotnet-version: 8.0.x
84+
dotnet-version: 10.0.x
8585
- name: Restore build artifacts
8686
uses: actions/cache/restore@v5
8787
with:
@@ -107,7 +107,7 @@ jobs:
107107
- name: Setup .NET
108108
uses: actions/setup-dotnet@v5
109109
with:
110-
dotnet-version: 8.0.x
110+
dotnet-version: 10.0.x
111111
- name: Restore build artifacts
112112
uses: actions/cache/restore@v5
113113
with:

.github/workflows/nuget-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
dotnet-version:
7-
default: '8.0.x'
7+
default: '10.0.x'
88
type: string
99
project-paths:
1010
required: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
needs: [rl-scanner-core, rl-scanner-authentication, rl-scanner-management]
6060
uses: ./.github/workflows/nuget-release.yml
6161
with:
62-
dotnet-version: 8.0.x
62+
dotnet-version: 10.0.x
6363
project-paths: "['src/Auth0.Core/Auth0.Core.csproj', 'src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj']"
6464
working-directory: "./"
6565
tag-prefix: ""
@@ -72,7 +72,7 @@ jobs:
7272
needs: [rl-scanner-core, rl-scanner-authentication, rl-scanner-management]
7373
uses: ./.github/workflows/nuget-release.yml
7474
with:
75-
dotnet-version: 8.0.x
75+
dotnet-version: 10.0.x
7676
project-paths: "['src/Auth0.ManagementApi/Auth0.ManagementApi.csproj']"
7777
working-directory: "src/Auth0.ManagementApi"
7878
tag-prefix: "mgmt-"
@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup .NET
9696
uses: actions/setup-dotnet@v5
9797
with:
98-
dotnet-version: 8.0.x
98+
dotnet-version: 10.0.x
9999

100100
- name: Install DocFX
101101
run: dotnet tool install -g docfx

.github/workflows/rl-secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup .NET
4242
uses: actions/setup-dotnet@v5
4343
with:
44-
dotnet-version: 8.0.x
44+
dotnet-version: 10.0.x
4545

4646
- name: Create NuGet packages
4747
shell: pwsh

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install .NET Core
3838
uses: actions/setup-dotnet@v5
3939
with:
40-
dotnet-version: "8.0.x"
40+
dotnet-version: "10.0.x"
4141

4242
- name: Dotnet Restore
4343
run: dotnet restore

0 commit comments

Comments
 (0)