Skip to content

Commit 2a05cf2

Browse files
authored
Update dependencies and GitHub Actions workflow versions (#308)
2 parents 7a9a215 + e3862c3 commit 2a05cf2

11 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2828

2929
- name: Setup .NET SDK ${{ env.NET_VERSION }}
30-
uses: actions/setup-dotnet@v4
30+
uses: actions/setup-dotnet@v5
3131
with:
3232
dotnet-version: ${{ env.NET_VERSION }}
3333
dotnet-quality: 'ga'

.github/workflows/publish_aspnetcore.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

.github/workflows/publish_aspnetcore_swashbuckle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

.github/workflows/publish_dapper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

.github/workflows/publish_ef.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

samples/TinyHelpers.Dapper.Sample/TinyHelpers.Dapper.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.4" />
9+
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/TinyHelpers.AspNetCore.Swashbuckle/TinyHelpers.AspNetCore.Swashbuckle.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.1.5" />
29+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.1.7" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

src/TinyHelpers.Dapper/TinyHelpers.Dapper.csproj

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

2323
<ItemGroup>
2424
<PackageReference Include="Dapper" Version="2.1.72" />
25-
<PackageReference Include="TinyHelpers" Version="3.3.18" />
25+
<PackageReference Include="TinyHelpers" Version="3.3.20" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

src/TinyHelpers.EntityFrameworkCore/TinyHelpers.EntityFrameworkCore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="TinyHelpers" Version="3.3.18" />
24+
<PackageReference Include="TinyHelpers" Version="3.3.20" />
2525
</ItemGroup>
2626

2727
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
28-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.25" />
28+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.26" />
2929
</ItemGroup>
3030

3131
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
32-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.14" />
32+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.15" />
3333
</ItemGroup>
3434

3535
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
36-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.4" />
36+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.6" />
3737
</ItemGroup>
3838

3939
<ItemGroup>

tests/TinyHelpers.EntityFrameworkCore.Tests/TinyHelpers.EntityFrameworkCore.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="coverlet.collector" Version="8.0.0">
16+
<PackageReference Include="coverlet.collector" Version="8.0.1">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>

0 commit comments

Comments
 (0)