Skip to content

Commit fda3599

Browse files
chore: bump dependencies from dependabot alerts (#172)
* chore: bump dependencies from dependabot alerts NuGet: - Microsoft.AspNetCore.Authentication.JwtBearer 8.0.25 → 8.0.26 - Microsoft.AspNetCore.Mvc.Testing 8.0.25 → 8.0.26 - FluentAssertions 6.12.0 → 8.9.0 (unit + integration tests) - coverlet.collector 8.0.1 → 10.0.0 (unit + integration tests) GitHub Actions: - actions/setup-dotnet v4 → v5 - actions/upload-pages-artifact v3 → v5 - actions/deploy-pages v4 → v5 - marocchino/sticky-pull-request-comment v2.9.4 → v3 All 372 unit tests pass after upgrade. * fix: pin marocchino/sticky-pull-request-comment to SHA (sonar hotspot)
1 parent e1a4be5 commit fda3599

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fetch-depth: 0
2424

2525
- name: Setup .NET 8
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v5
2727
with:
2828
dotnet-version: '8.0.x'
2929

@@ -214,14 +214,14 @@ jobs:
214214

215215
- name: Upload Pages artifact
216216
if: always()
217-
uses: actions/upload-pages-artifact@v3
217+
uses: actions/upload-pages-artifact@v5
218218
with:
219219
path: ./coverage-html
220220

221221
- name: Deploy to GitHub Pages
222222
if: always()
223223
id: deploy-pages
224-
uses: actions/deploy-pages@v4
224+
uses: actions/deploy-pages@v5
225225

226226
- name: Post coverage summary on PR
227227
if: github.event_name == 'pull_request'
@@ -251,7 +251,7 @@ jobs:
251251
252252
- name: Add PR comment with coverage summary
253253
if: github.event_name == 'pull_request'
254-
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2 (v2.9.4)
254+
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
255255
with:
256256
recreate: true
257257
path: coverage-comment.md

src/MechanicsSoftware.Infrastructure/MechanicsSoftware.Infrastructure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<ItemGroup>
99
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
10-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.25" />
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.26" />
1111
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.14">
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
<PrivateAssets>all</PrivateAssets>

tests/MechanicsSoftware.IntegrationTests/MechanicsSoftware.IntegrationTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="coverlet.collector" Version="8.0.1" />
14-
<PackageReference Include="FluentAssertions" Version="6.12.0" />
15-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.25" />
13+
<PackageReference Include="coverlet.collector" Version="10.0.0" />
14+
<PackageReference Include="FluentAssertions" Version="8.9.0" />
15+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.26" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
1717
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
1818
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />

tests/MechanicsSoftware.UnitTests/MechanicsSoftware.UnitTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="coverlet.collector" Version="8.0.1" />
14-
<PackageReference Include="FluentAssertions" Version="6.12.0" />
13+
<PackageReference Include="coverlet.collector" Version="10.0.0" />
14+
<PackageReference Include="FluentAssertions" Version="8.9.0" />
1515
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.14" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1717
<PackageReference Include="Moq" Version="4.20.70" />

0 commit comments

Comments
 (0)