From 78ee21b514e6777cc01c9581eeb7865b11ea8edd Mon Sep 17 00:00:00 2001 From: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:17:56 +0100 Subject: [PATCH] Update global.json to 8.0.200 + rollForward patch versions only (#3485) * rollPatch NET version * Roll to 8.0.100 * 200 channel * Fix for rhino mac * 204 magic * Roll forward with security patches --- .circleci/scripts/config-template.yml | 2 +- .github/workflows/ci.yml | 2 +- global.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/scripts/config-template.yml b/.circleci/scripts/config-template.yml index f64173dbb2..15f6b5918f 100644 --- a/.circleci/scripts/config-template.yml +++ b/.circleci/scripts/config-template.yml @@ -420,7 +420,7 @@ jobs: # Each project will have individual jobs for each specific task it has to build-connector-dotnet-mac: docker: - - image: mcr.microsoft.com/dotnet/sdk:7.0 + - image: mcr.microsoft.com/dotnet/sdk:8.0.204 parameters: slnname: type: string diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2b7682d3f..ed038082f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 7.x.x + dotnet-version: 8.0.2xx # Align with global.json (including roll forward rules) - name: ⚒️ Run GitVersion run: ./build.ps1 build-server-version diff --git a/global.json b/global.json index 08f229ce09..c09ced8c12 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "7.0.0", - "rollForward": "latestMajor", + "version": "8.0.200", + "rollForward": "latestPatch", "allowPrerelease": false } }