Skip to content

Commit 02361fe

Browse files
author
Fortinbra
committed
chore(deps): bump all dependencies (closes #40-#48)
NuGet packages: - Microsoft.AspNetCore.* 10.0.3 -> 10.0.5 (JwtBearer, OpenApi, WebAssembly, Mvc.Testing) - Microsoft.Extensions.* 10.0.3 -> 10.0.5 (Http, Localization, HealthChecks.EFCore, DI.Abstractions) - Microsoft.EntityFrameworkCore.* 10.0.3 -> 10.0.5 (Design, InMemory, Sqlite) - Npgsql.EntityFrameworkCore.PostgreSQL 10.0.0 -> 10.0.1 - Microsoft.Build.Tasks.Core 18.3.3 -> 18.4.0 - coverlet.collector 6.0.4 -> 8.0.0 Dotnet tools: - dotnet-ef 10.0.3 -> 10.0.5 - dotnet-reportgenerator-globaltool 5.5.3 -> 5.5.4 GitHub Actions: - actions/upload-artifact v4 -> v7 - marocchino/sticky-pull-request-comment v2 -> v3
1 parent bef2c6e commit 02361fe

File tree

11 files changed

+32
-31
lines changed

11 files changed

+32
-31
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-ef": {
6-
"version": "10.0.3",
6+
"version": "10.0.5",
77
"commands": [
88
"dotnet-ef"
99
],
1010
"rollForward": false
1111
},
1212
"dotnet-reportgenerator-globaltool": {
13-
"version": "5.5.3",
13+
"version": "5.5.4",
1414
"commands": [
1515
"reportgenerator"
1616
],

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,22 +84,22 @@ jobs:
8484
output: both
8585

8686
- name: Add coverage PR comment
87-
uses: marocchino/sticky-pull-request-comment@v2
87+
uses: marocchino/sticky-pull-request-comment@v3
8888
if: github.event_name == 'pull_request'
8989
with:
9090
recreate: true
9191
path: code-coverage-results.md
9292

9393
- name: Upload test results
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v7
9595
if: always()
9696
with:
9797
name: test-results
9898
path: ./TestResults/*.trx
9999
retention-days: 7
100100

101101
- name: Upload coverage report
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v7
103103
if: always()
104104
with:
105105
name: coverage-report
@@ -151,7 +151,7 @@ jobs:
151151
# --results-directory ./TestResults
152152
#
153153
# - name: Upload performance results
154-
# uses: actions/upload-artifact@v4
154+
# uses: actions/upload-artifact@v7
155155
# if: always()
156156
# with:
157157
# name: performance-results

.github/workflows/docker-build-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
run: cat ./CoverageReport/SummaryGithub.md >> $GITHUB_STEP_SUMMARY
8989

9090
- name: Upload test results
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v7
9292
if: always()
9393
with:
9494
name: test-results
@@ -114,7 +114,7 @@ jobs:
114114
/p:MinVerVersionOverride=${{ steps.version.outputs.version }}
115115
116116
- name: Upload publish artifact
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v7
118118
with:
119119
name: app-publish
120120
path: ./publish
@@ -188,7 +188,7 @@ jobs:
188188
touch "/tmp/digests/${digest#sha256:}"
189189
190190
- name: Upload digest
191-
uses: actions/upload-artifact@v4
191+
uses: actions/upload-artifact@v7
192192
with:
193193
name: digests-${{ matrix.suffix }}
194194
path: /tmp/digests/*

.github/workflows/performance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
9090
# NBomber writes reports to tests/BudgetExperiment.Performance.Tests/reports/
9191
- name: Upload performance reports
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
if: always()
9494
with:
9595
name: performance-reports-${{ steps.profile.outputs.name }}-${{ github.run_number }}
@@ -126,14 +126,14 @@ jobs:
126126
127127
- name: Post performance PR comment
128128
if: github.event_name == 'pull_request' && always()
129-
uses: marocchino/sticky-pull-request-comment@v2
129+
uses: marocchino/sticky-pull-request-comment@v3
130130
with:
131131
header: performance
132132
recreate: true
133133
path: perf-summary.md
134134

135135
- name: Upload test results
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v7
137137
if: always()
138138
with:
139139
name: perf-test-results

src/BudgetExperiment.Api/BudgetExperiment.Api.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
<ItemGroup>
1313
<PackageReference Include="Asp.Versioning.Mvc" Version="8.1.1" />
1414
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" />
15-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.3" />
16-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="10.0.3" />
15+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" />
16+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="10.0.5" />
1717
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.0" />
1818
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.0" />
1919
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.15.1" />
2020
<PackageReference Include="OpenTelemetry.Instrumentation.EntityFrameworkCore" Version="1.15.0-beta.1" />
2121
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.15.0" />
2222
<PackageReference Include="Scalar.AspNetCore" Version="2.13.2" />
23-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" />
24-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.3" />
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.3">
23+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
24+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.5" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.5">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>

src/BudgetExperiment.Client/BudgetExperiment.Client.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.3" />
22-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.3" />
23-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.3" PrivateAssets="all" />
24-
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
25-
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.3" />
21+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.5" />
22+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.5" />
23+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.5" PrivateAssets="all" />
24+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
25+
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.5" />
26+
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.5" />
2627
</ItemGroup>
2728

2829
<ItemGroup>

src/BudgetExperiment.Domain/BudgetExperiment.Domain.csproj

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

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
18+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
1919
</ItemGroup>
2020

2121
</Project>

src/BudgetExperiment.Infrastructure/BudgetExperiment.Infrastructure.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</ItemGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.3.3" />
11-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
10+
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.4.0" />
11+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

tests/BudgetExperiment.Api.Tests/BudgetExperiment.Api.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.3" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.3" />
15+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.5" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.5" />
1717
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="10.4.0" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1919
<PackageReference Include="Shouldly" Version="4.3.0" />

tests/BudgetExperiment.Infrastructure.Tests/BudgetExperiment.Infrastructure.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.3" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.5" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1717
<PackageReference Include="Shouldly" Version="4.3.0" />
1818
<PackageReference Include="xunit" Version="2.9.3" />

0 commit comments

Comments
 (0)