From ff2c1fc7574e77d7c4ae68ad4bad042c0bf2f749 Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Sat, 2 Sep 2023 23:01:36 +0200 Subject: [PATCH] Update dependency dotnet-sdk to v7 --- .build/Solution.cs | 4 ++-- .github/workflows/ci.yml | 4 ++-- global.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.build/Solution.cs b/.build/Solution.cs index 15cf58c19..a3e9826d8 100644 --- a/.build/Solution.cs +++ b/.build/Solution.cs @@ -134,9 +134,9 @@ RocketSurgeonGitHubActionsConfiguration configuration { DotNetVersion = "3.1.x" }, - new SetupDotNetStep("Use .NET Core 6.0 SDK") + new SetupDotNetStep("Use .NET Core 7.0 SDK") { - DotNetVersion = "6.0.x" + DotNetVersion = "7.0.x" }, } ); diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ead96a283..0ffa327fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,10 +97,10 @@ jobs: uses: actions/setup-dotnet@v3.2.0 with: dotnet-version: '3.1.x' - - name: 🔨 Use .NET Core 6.0 SDK + - name: 🔨 Use .NET Core 7.0 SDK uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: '6.0.x' + dotnet-version: '7.0.x' - name: 🎁 dotnet tool restore run: | dotnet tool restore diff --git a/global.json b/global.json index 17717317f..96f0cfd40 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.413", + "version": "7.0.400", "rollForward": "latestMinor" } }