From fd56366a74be7a184b2f5622bf50e2fda6a4261c Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Thu, 6 Oct 2022 11:00:43 +0200 Subject: [PATCH 01/17] (maint) update Cake.Recipe in CI to v 3.0.1 and Cake to 1.3.0 --- .config/dotnet-tools.json | 2 +- .github/workflows/build.yml | 19 +++++--------- .github/workflows/codeql-analysis.yml | 18 +++++-------- build.ps1 | 1 - build.sh | 1 - recipe.cake | 37 ++------------------------- 6 files changed, 15 insertions(+), 63 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 727dfd7..4903ba5 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "0.38.5", + "version": "1.3.0", "commands": [ "dotnet-cake" ] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84cc07e..3d9fbe4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,16 +47,11 @@ jobs: - uses: actions/setup-dotnet@v2.0.0 with: # codecov needs 2.1 - dotnet-version: '2.1.818' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '3.1.x' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '5.0.x' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '6.0.x' + dotnet-version: | + 2.1 + 3.1 + 5.0 + 6.0 - name: Cache Tools uses: actions/cache@v3 with: @@ -67,9 +62,7 @@ jobs: with: script-path: recipe.cake target: CI - verbosity: Diagnostic - cake-version: 0.38.5 - cake-bootstrap: true + cake-version: 1.3.0 - name: Upload Issues uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5070718..f6909eb 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,16 +37,11 @@ jobs: - uses: actions/setup-dotnet@v2.0.0 with: # codecov needs 2.1 - dotnet-version: '2.1.818' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '3.1.x' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '5.0.x' - - uses: actions/setup-dotnet@v2.0.0 - with: - dotnet-version: '6.0.x' + dotnet-version: | + 2.1 + 3.1 + 5.0 + 6.0 - name: Cache Tools uses: actions/cache@v3 @@ -69,8 +64,7 @@ jobs: with: script-path: recipe.cake target: DotNetCore-Build - cake-version: 0.38.5 - cake-bootstrap: true + cake-version: 1.3.0 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 diff --git a/build.ps1 b/build.ps1 index be8dfa8..8257436 100644 --- a/build.ps1 +++ b/build.ps1 @@ -9,6 +9,5 @@ $env:DOTNET_NOLOGO = '1' dotnet tool restore if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -dotnet cake recipe.cake --bootstrap dotnet cake recipe.cake @args if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } diff --git a/build.sh b/build.sh index 9728521..9863e90 100644 --- a/build.sh +++ b/build.sh @@ -9,5 +9,4 @@ export DOTNET_NOLOGO=1 dotnet tool restore -dotnet cake recipe.cake --bootstrap dotnet cake recipe.cake "$@" diff --git a/recipe.cake b/recipe.cake index a699e7c..fa32bb3 100644 --- a/recipe.cake +++ b/recipe.cake @@ -1,4 +1,4 @@ -#load nuget:?package=Cake.Recipe&version=2.2.1 +#load nuget:?package=Cake.Recipe&version=3.0.1 var standardNotificationMessage = "Version {0} of {1} has just been released, it will be available here https://www.nuget.org/packages/{1}, once package indexing is complete."; @@ -14,44 +14,11 @@ BuildParameters.SetParameters( twitterMessage: standardNotificationMessage, preferredBuildProviderType: BuildProviderType.GitHubActions, shouldRunDotNetCorePack: true, - shouldUseDeterministicBuilds: true, - shouldRunDupFinder: false, // dupFinder is missing since 2021.3.0-eap - shouldRunInspectCode: false // we're shipping a custom version of it below + shouldUseDeterministicBuilds: true ); BuildParameters.PrintParameters(Context); -// workaround for https://github.com/cake-contrib/Cake.Recipe/issues/862 -ToolSettings.SetToolPreprocessorDirectives( - reSharperTools: "#tool nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2022.2.0"); - ToolSettings.SetToolSettings(context: Context); -// additional workaround for https://github.com/cake-contrib/Cake.Recipe/issues/862 -// to suppress the --build/--no-build warning that is generated in the default -BuildParameters.Tasks.InspectCodeTask = Task("InspectCode2021") - .WithCriteria(() => BuildParameters.BuildAgentOperatingSystem == PlatformFamily.Windows, "Skipping due to not running on Windows") - .Does(data => RequireTool(ToolSettings.ReSharperTools, () => { - var inspectCodeLogFilePath = BuildParameters.Paths.Directories.InspectCodeTestResults.CombineWithFilePath("inspectcode.xml"); - - var settings = new InspectCodeSettings() { - SolutionWideAnalysis = true, - OutputFile = inspectCodeLogFilePath, - ArgumentCustomization = x => x.Append("--no-build") - }; - - if (FileExists(BuildParameters.SourceDirectoryPath.CombineWithFilePath(BuildParameters.ResharperSettingsFileName))) - { - settings.Profile = BuildParameters.SourceDirectoryPath.CombineWithFilePath(BuildParameters.ResharperSettingsFileName); - } - - InspectCode(BuildParameters.SolutionFilePath, settings); - - // Pass path to InspectCode log file to Cake.Issues.Recipe - IssuesParameters.InputFiles.InspectCodeLogFilePath = inspectCodeLogFilePath; - }) -); -BuildParameters.Tasks.AnalyzeTask.IsDependentOn("InspectCode2021"); -IssuesBuildTasks.ReadIssuesTask.IsDependentOn("InspectCode2021"); - Build.RunDotNetCore(); From 40ec4fe56a7470323cf1f3d7a4fcaa8b745b7be2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 14:26:43 +0000 Subject: [PATCH 02/17] (maint) Update dependency Shouldly to v4.1.0 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 2076c59..ed1dbf3 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -16,7 +16,7 @@ - + From 7bc3e406fbbcc5629b4cb0ebd56eb478890762b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 20:57:12 +0000 Subject: [PATCH 03/17] (maint) Update actions/setup-dotnet action to v2.1.1 --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d9fbe4..35da0bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v3 - name: Fetch all tags and branches run: git fetch --prune --unshallow - - uses: actions/setup-dotnet@v2.0.0 + - uses: actions/setup-dotnet@v2.1.1 with: # codecov needs 2.1 dotnet-version: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f6909eb..8ebfc8d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v2.0.0 + - uses: actions/setup-dotnet@v2.1.1 with: # codecov needs 2.1 dotnet-version: | From d5de5ec16c535d5c2c745f0ef0dff137328f0ce9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:13:13 +0000 Subject: [PATCH 04/17] (maint) Update actions/setup-dotnet action to v3 --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35da0bc..2f8e723 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v3 - name: Fetch all tags and branches run: git fetch --prune --unshallow - - uses: actions/setup-dotnet@v2.1.1 + - uses: actions/setup-dotnet@v3.0.1 with: # codecov needs 2.1 dotnet-version: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8ebfc8d..d6ed828 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v2.1.1 + - uses: actions/setup-dotnet@v3.0.1 with: # codecov needs 2.1 dotnet-version: | From d964661dd3f00f84a47ab6b16a767bce2da2b2e4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:16:21 +0000 Subject: [PATCH 05/17] (maint) Update dependency xunit.analyzers to v1 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index ed1dbf3..24782fc 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -20,7 +20,7 @@ - + runtime; build; native; contentfiles; analyzers all From 8091c14a1263538f165be103be41ae3e5e7774b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:15:51 +0000 Subject: [PATCH 06/17] (maint) Update dependency xunit to v2.4.2 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 24782fc..dc30510 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -19,7 +19,7 @@ - + runtime; build; native; contentfiles; analyzers From adecc2e0eae9af56653a987cb532cbb303539eaf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:15:56 +0000 Subject: [PATCH 07/17] (maint) Update dependency xunit.runner.visualstudio to v2.4.5 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index dc30510..56212b6 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -21,7 +21,7 @@ - + runtime; build; native; contentfiles; analyzers all From bfc30ee5ee895891497bcea3f6fc8c8ef3b68f3b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:16:02 +0000 Subject: [PATCH 08/17] (maint) Update dependency Microsoft.NET.Test.Sdk to v17.3.2 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 56212b6..072b7be 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -14,7 +14,7 @@ - + From 7370a82df2a42c194d3f0899cb28568caf644077 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Fri, 7 Oct 2022 16:34:40 +0200 Subject: [PATCH 09/17] (maint) switched to macos-11 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f8e723..55f9168 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ windows-2019, ubuntu-18.04, macos-10.15 ] + os: [ windows-2019, ubuntu-18.04, macos-11 ] env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GITHUB_PAT: ${{ secrets.GH_TOKEN }} From 30904e613d4eefca591481d490342358fd619f1f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Oct 2022 14:05:19 +0000 Subject: [PATCH 10/17] (maint) Update github/codeql-action action to v2 --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d6ed828..18088fd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -51,7 +51,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -67,4 +67,4 @@ jobs: cake-version: 1.3.0 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From d6dca9e11bee2d1d67f7c0f4ef54fafd04448941 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Oct 2022 19:22:56 +0000 Subject: [PATCH 11/17] (maint) Update dependency JetBrains.Annotations to v2022 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- .../Spectre.Console.Registrars.Microsoft-Di.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 072b7be..a7c79f2 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -12,7 +12,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj b/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj index 307a0bc..a93e44e 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj @@ -31,7 +31,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive From ccec5b1287cd56147b2fdab7b6f43a69ee3e1126 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Oct 2022 19:27:40 +0000 Subject: [PATCH 12/17] (maint) Update dependency Moq to v4.18.2 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index a7c79f2..0cc6c52 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -15,7 +15,7 @@ - + From 547ef5e61af38069bb3294f80463759feac40e1a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 07:15:01 +0000 Subject: [PATCH 13/17] (maint) Update dependency dotnet-sdk to v6.0.402 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 9ff1a3d..318335a 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.300", + "version": "6.0.402", "rollForward": "latestFeature" } } \ No newline at end of file From 46ebc7755a81ca2a0006ac202db24c6b8f3c76a5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Oct 2022 16:06:50 +0000 Subject: [PATCH 14/17] (maint) Update actions/setup-dotnet action to v3.0.2 --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55f9168..3205cb6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v3 - name: Fetch all tags and branches run: git fetch --prune --unshallow - - uses: actions/setup-dotnet@v3.0.1 + - uses: actions/setup-dotnet@v3.0.2 with: # codecov needs 2.1 dotnet-version: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 18088fd..374916b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3.0.1 + - uses: actions/setup-dotnet@v3.0.2 with: # codecov needs 2.1 dotnet-version: | From d867318f8e68eb936363975208ae551147f99be8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Oct 2022 15:40:37 +0000 Subject: [PATCH 15/17] (maint) Update dependency coverlet.msbuild to v3.2.0 --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 0cc6c52..85d0c9e 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -8,7 +8,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all From bda8b2385391cc0babc422006e79921b01838358 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Oct 2022 20:24:09 +0000 Subject: [PATCH 16/17] (maint) Update actions/setup-dotnet action to v3.0.3 --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3205cb6..11f2883 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v3 - name: Fetch all tags and branches run: git fetch --prune --unshallow - - uses: actions/setup-dotnet@v3.0.2 + - uses: actions/setup-dotnet@v3.0.3 with: # codecov needs 2.1 dotnet-version: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 374916b..8acf8a9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3.0.2 + - uses: actions/setup-dotnet@v3.0.3 with: # codecov needs 2.1 dotnet-version: | From 8a4d4a54352a3eabf3ac0d2335729318a065973e Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Fri, 25 Nov 2022 11:50:00 +0100 Subject: [PATCH 17/17] (#22) Bump Spectre.Console to v 0.45.0 This also contains a switch from Spectre.Console to Spectre.Console.Cli --- .../Spectre.Console.Registrars.Microsoft-Di.Tests.csproj | 6 +++--- .../Spectre.Console.Registrars.Microsoft-Di.csproj | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj index 85d0c9e..8334d51 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di.Tests/Spectre.Console.Registrars.Microsoft-Di.Tests.csproj @@ -12,13 +12,13 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + - - + + diff --git a/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj b/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj index a93e44e..2a03d79 100644 --- a/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj +++ b/src/Spectre.Console.Registrars.Microsoft-Di/Spectre.Console.Registrars.Microsoft-Di.csproj @@ -31,13 +31,13 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all - +