From 297137b485252487d7b1d7c035e094b482ff1180 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 19:12:49 +0000 Subject: [PATCH 1/7] chore(deps): update rocket surgery other --- .github/workflows/ci.yml | 2 +- .github/workflows/close-milestone.yml | 2 +- .github/workflows/draft-release.yml | 2 +- .github/workflows/update-milestone.yml | 2 +- Directory.Packages.props | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63a79390c..2ef74f763 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,7 +167,7 @@ jobs: Publish: needs: - Build - uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.3 + uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.10 secrets: RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}' RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}' diff --git a/.github/workflows/close-milestone.yml b/.github/workflows/close-milestone.yml index af50b37eb..6cbc06141 100644 --- a/.github/workflows/close-milestone.yml +++ b/.github/workflows/close-milestone.yml @@ -41,7 +41,7 @@ jobs: # move any issues to that milestone in the event the release is renamed - name: sync milestones - uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.3 + uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.10 with: default-label: 'mysterious' github-token: ${{ secrets.OMNISHARP_BOT_TOKEN }} diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index f2c77a004..c0a14aa0e 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -44,7 +44,7 @@ jobs: continue-on-error: true - name: sync milestones - uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.3 + uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.10 with: default-label: 'mysterious' github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update-milestone.yml b/.github/workflows/update-milestone.yml index 86cf7b921..533ce98d0 100644 --- a/.github/workflows/update-milestone.yml +++ b/.github/workflows/update-milestone.yml @@ -50,7 +50,7 @@ jobs: continue-on-error: true - name: sync milestones - uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.3 + uses: RocketSurgeonsGuild/actions/sync-milestone@v0.3.10 with: default-label: 'mysterious' github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Directory.Packages.props b/Directory.Packages.props index f58c74ab0..cc17a9e9a 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,8 +5,8 @@ - - + + @@ -24,7 +24,7 @@ - + From 870d39f6baff821d64558d4878b6752fca0a3e76 Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Sun, 16 Jun 2024 22:39:40 +0200 Subject: [PATCH 2/7] Enable verbose logging for Restore step --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ef74f763..997138006 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,7 @@ jobs: - name: 🎁 Restore id: restore run: | - dotnet nuke Restore --skip + dotnet nuke Restore --skip --verbosity Verbose - name: ⚙ Build id: build run: | From 9b41b47f43f8b1640d099a78413e5429306b2403 Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Sun, 16 Jun 2024 23:52:48 +0200 Subject: [PATCH 3/7] Use GitVersion attribute --- .build/Build.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.build/Build.cs b/.build/Build.cs index 8097b5d06..7c426c90e 100644 --- a/.build/Build.cs +++ b/.build/Build.cs @@ -56,7 +56,7 @@ public sealed partial class Solution : NukeBuild, public Target Pack => _ => _.Inherit(x => x.CorePack) .DependsOn(Clean); - [ComputedGitVersion] public GitVersion GitVersion { get; } = null!; + [GitVersion(NoFetch = true)] public GitVersion GitVersion { get; } = null!; public Target Clean => _ => _.Inherit(x => x.Clean); public Target Restore => _ => _.Inherit(x => x.CoreRestore); From cb13264f6915fb4475c0c85e1c739dec4ed9a14d Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:46:03 +0200 Subject: [PATCH 4/7] Remove GitVersion.Tool from dotnet tools --- .config/dotnet-tools.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 2c3bb3fd1..6781dc5cd 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -8,12 +8,6 @@ "dotnet-outdated" ] }, - "gitversion.tool": { - "version": "5.12.0", - "commands": [ - "dotnet-gitversion" - ] - }, "dotnet-reportgenerator-globaltool": { "version": "5.3.6", "commands": [ From aa7b2432a4b906ce226b2538e4903f44735e372f Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Tue, 18 Jun 2024 23:28:05 +0200 Subject: [PATCH 5/7] Remove GitVersion.Tool from build dependencies --- .build/.build.csproj | 1 - Directory.Packages.props | 1 - 2 files changed, 2 deletions(-) diff --git a/.build/.build.csproj b/.build/.build.csproj index 859c216f5..e39c03dce 100644 --- a/.build/.build.csproj +++ b/.build/.build.csproj @@ -12,7 +12,6 @@ - diff --git a/Directory.Packages.props b/Directory.Packages.props index cc17a9e9a..acc1fe627 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -21,7 +21,6 @@ - From 17edf7dd017ff79dd852d4229d7de0921c84f2eb Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Tue, 18 Jun 2024 23:30:30 +0200 Subject: [PATCH 6/7] Revert "Remove GitVersion.Tool from dotnet tools" This reverts commit cb13264f6915fb4475c0c85e1c739dec4ed9a14d. --- .config/dotnet-tools.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 6781dc5cd..2c3bb3fd1 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -8,6 +8,12 @@ "dotnet-outdated" ] }, + "gitversion.tool": { + "version": "5.12.0", + "commands": [ + "dotnet-gitversion" + ] + }, "dotnet-reportgenerator-globaltool": { "version": "5.3.6", "commands": [ From a2ebd08ed78afb7abdeed46edcbf090b361351ad Mon Sep 17 00:00:00 2001 From: Emmanuel ANDRE <2341261+manandre@users.noreply.github.com> Date: Tue, 18 Jun 2024 23:35:17 +0200 Subject: [PATCH 7/7] Add GitVersion.Tool to build dependencies --- .build/.build.csproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.build/.build.csproj b/.build/.build.csproj index e39c03dce..bd2d3894a 100644 --- a/.build/.build.csproj +++ b/.build/.build.csproj @@ -22,4 +22,8 @@ + + + +