From 6b3b595fb375f555285c60c4f961b715b33b0c84 Mon Sep 17 00:00:00 2001 From: kailash-b Date: Wed, 4 Feb 2026 16:00:42 +0530 Subject: [PATCH] Upgrade CI to use .NET 10 --- .github/workflows/build.yml | 8 ++++---- .github/workflows/nuget-release.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/rl-secure.yml | 2 +- .github/workflows/snyk.yml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a27376069..b666fddca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -54,7 +54,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore build artifacts uses: actions/cache/restore@v5 with: @@ -81,7 +81,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore build artifacts uses: actions/cache/restore@v5 with: @@ -107,7 +107,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore build artifacts uses: actions/cache/restore@v5 with: diff --git a/.github/workflows/nuget-release.yml b/.github/workflows/nuget-release.yml index f947e0f84..d8b0d9836 100644 --- a/.github/workflows/nuget-release.yml +++ b/.github/workflows/nuget-release.yml @@ -4,7 +4,7 @@ on: workflow_call: inputs: dotnet-version: - default: '8.0.x' + default: '10.0.x' type: string project-paths: required: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4af240946..85a9f2ee1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: needs: [rl-scanner-core, rl-scanner-authentication, rl-scanner-management] uses: ./.github/workflows/nuget-release.yml with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x project-paths: "['src/Auth0.Core/Auth0.Core.csproj', 'src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj']" working-directory: "./" tag-prefix: "" @@ -72,7 +72,7 @@ jobs: needs: [rl-scanner-core, rl-scanner-authentication, rl-scanner-management] uses: ./.github/workflows/nuget-release.yml with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x project-paths: "['src/Auth0.ManagementApi/Auth0.ManagementApi.csproj']" working-directory: "src/Auth0.ManagementApi" tag-prefix: "mgmt-" @@ -95,7 +95,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Install DocFX run: dotnet tool install -g docfx diff --git a/.github/workflows/rl-secure.yml b/.github/workflows/rl-secure.yml index bebf96c52..23b47cf22 100644 --- a/.github/workflows/rl-secure.yml +++ b/.github/workflows/rl-secure.yml @@ -41,7 +41,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Create NuGet packages shell: pwsh diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 454afe67c..a43143608 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -37,7 +37,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: Dotnet Restore run: dotnet restore