From 7f7acdc0aecc4ff829f25a538486b4f2cb0d867a Mon Sep 17 00:00:00 2001 From: Workleap <53535748+Infra-Workleap@users.noreply.github.com> Date: Fri, 16 Aug 2024 14:38:52 -0400 Subject: [PATCH] chore(deps): update dependency dotnet-sdk to v8.0.400 (#82) * chore(deps): update dependency dotnet-sdk to v8.0.400 * use global.json instead of explicit .NET 6 version * Keep both .net 6 and 8 --------- Co-authored-by: Renovate Bot Co-authored-by: He Qian Wang --- .github/workflows/ci.yml | 2 ++ .github/workflows/publish.yml | 2 ++ global.json | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ddbcef..89b1d70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: with: fetch-depth: 0 + - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "6.0.x" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5625837..e20ff34 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,6 +14,8 @@ jobs: with: fetch-depth: 0 + - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "6.0.x" diff --git a/global.json b/global.json index f0d90aa..15bc365 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.303", + "version": "8.0.400", "rollForward": "latestMinor", "allowPrerelease": false }