Skip to content
This repository was archived by the owner on Jul 3, 2026. It is now read-only.

Commit 4e36147

Browse files
authored
chore: update dependencies (#101)
1 parent f9667f8 commit 4e36147

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "0.26.7",
6+
"version": "0.27.2",
77
"commands": [
88
"dotnet-csharpier"
99
]
1010
}
1111
}
12-
}
12+
}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@main
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
@@ -73,7 +73,7 @@ jobs:
7373
# ./location_of_script_within_repo/buildscript.sh
7474

7575
- name: Set up .NET
76-
uses: actions/setup-dotnet@v3
76+
uses: actions/setup-dotnet@v4
7777
with:
7878
dotnet-version: '8.x'
7979

.github/workflows/format-and-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@main
1919

2020
- name: Setup dotnet
21-
uses: actions/setup-dotnet@v3
21+
uses: actions/setup-dotnet@v4
2222
with:
2323
dotnet-version: '8.x'
2424

.github/workflows/main-deploy-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@main
1313

1414
- name: Setup dotnet
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v4
1616
with:
1717
dotnet-version: '8.x'
1818

.github/workflows/main-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runtime: osx-x64
2424
dotnet: '8.x'
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@main
2727

2828
- name: Setup .NET
29-
uses: actions/setup-dotnet@v3
29+
uses: actions/setup-dotnet@v4
3030
with:
3131
dotnet-version: ${{ matrix.dotnet }}
3232

src/Biomatch.Benchmark/Biomatch.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="BenchmarkDotNet" Version="0.13.11" />
17+
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

src/Biomatch.CLI/Biomatch.CLI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Sep" Version="0.3.0" />
14+
<PackageReference Include="Sep" Version="0.4.0" />
1515
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
1616
</ItemGroup>
1717

src/Biomatch.CLI/Progress/MatchingProgress.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public static IProgress<int> GetMatchingProgressReport(int totalRecordsToMatch)
4848
}
4949
Console.Write(
5050
$"""
51-
Progress: {currentPercentage, 3}% | Record match operations performed: {completedOperations:N0}
52-
Total time: {elapsedTime} | Estimated time remaining: {remainingTime.Days:D2}d {remainingTime.Hours:D2}h {remainingTime.Minutes:D2}m {remainingTime.Seconds:D2}s
53-
54-
"""
51+
Progress: {currentPercentage, 3}% | Record match operations performed: {completedOperations:N0}
52+
Total time: {elapsedTime} | Estimated time remaining: {remainingTime.Days:D2}d {remainingTime.Hours:D2}h {remainingTime.Minutes:D2}m {remainingTime.Seconds:D2}s
53+
54+
"""
5555
);
5656
consoleTextPrinted = true;
5757
lastConsoleUpdateTime = DateTime.UtcNow;

src/Biomatch.Domain/Biomatch.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="libphonenumber-csharp" Version="8.13.26" />
12+
<PackageReference Include="libphonenumber-csharp" Version="8.13.29" />
1313
<PackageReference Include="Quickenshtein" Version="1.5.1"/>
1414
<PackageReference Include="SymSpell" Version="6.7.2"/>
1515
<PackageReference Include="System.Private.Uri" Version="4.3.2"/>

tests/Biomatch.Domain.Tests.Unit/Biomatch.Domain.Tests.Unit.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="FluentAssertions" Version="6.12.0" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1313
<PackageReference Include="System.Net.Http" Version="4.3.4" />
1414
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
15-
<PackageReference Include="xunit" Version="2.6.3" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
15+
<PackageReference Include="xunit" Version="2.6.6" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>

0 commit comments

Comments
 (0)