Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Jan 29, 2025
1 parent f0b6280 commit 0571930
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-reportgenerator-globaltool": {
"version": "5.1.9",
"version": "5.4.3",
"commands": [
"reportgenerator"
]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.302'
dotnet-version: '8.0.405'
- name: Install dependencies
run: ./build.ps1 dependencies
- name: Build
run: ./build.ps1 build
- name: Test
run: ./build.ps1 test
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: |
Expand Down
10 changes: 5 additions & 5 deletions MailBounceDetector.Tests/MailBounceDetector.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
<EmbeddedResource Include="Fixtures\non_bounce_postfix_hello_world.eml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JunitXml.TestLogger" Version="4.0.254" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="JunitXml.TestLogger" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion MailBounceDetector/MailBounceDetector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MimeKit" Version="4.7.1" />
<PackageReference Include="MimeKit" Version="4.10.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MailBounceDetector

[![Build status](https://github.com/rgl/mailbouncedetector/workflows/Build/badge.svg)](https://github.com/rgl/mailbouncedetector/actions?query=workflow%3ABuild)
[![Build status](https://github.com/rgl/MailBounceDetector/actions/workflows/build.yml/badge.svg)](https://github.com/rgl/MailBounceDetector/actions/workflows/build.yml)

this library detects whether a message is a [bounce message](https://en.wikipedia.org/wiki/Bounce_message).

Expand Down

0 comments on commit 0571930

Please sign in to comment.