From fdf544690486842c2e14487dba3c12237ea7684a Mon Sep 17 00:00:00 2001 From: Bartosz Litwiniuk <> Date: Thu, 5 Feb 2026 21:17:17 +0100 Subject: [PATCH 1/2] Fix BacktraceReport.cs and DeduplicationModel.cs formatting --- Backtrace/Model/BacktraceReport.cs | 2 +- Backtrace/Model/DeduplicationModel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Backtrace/Model/BacktraceReport.cs b/Backtrace/Model/BacktraceReport.cs index f40b2c1..f3a5c7f 100644 --- a/Backtrace/Model/BacktraceReport.cs +++ b/Backtrace/Model/BacktraceReport.cs @@ -175,7 +175,7 @@ internal static Dictionary ConcatAttributes( if (attributes == null) { return reportAttributes; - }; + } return reportAttributes.Merge(attributes); } diff --git a/Backtrace/Model/DeduplicationModel.cs b/Backtrace/Model/DeduplicationModel.cs index 4b285f0..82726e0 100644 --- a/Backtrace/Model/DeduplicationModel.cs +++ b/Backtrace/Model/DeduplicationModel.cs @@ -95,7 +95,7 @@ public string GetSha() var bytes = Encoding.ASCII.GetBytes(json); var hash = sha1.ComputeHash(bytes); return Convert.ToBase64String(hash); - }; + } } } } From c47265dbef154b3a2fdab459c091c145b55289a5 Mon Sep 17 00:00:00 2001 From: Bartosz Litwiniuk <> Date: Thu, 5 Feb 2026 21:17:58 +0100 Subject: [PATCH 2/2] Update version of 'setup-dotnet' and 'checkout' in workflows CI/CD --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 40c9ad8..1aacecd 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -11,10 +11,10 @@ jobs: runs-on: windows-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: 3.0.x @@ -34,10 +34,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup .NET 8.0 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: 8.0.x