Skip to content

Commit f9b9e82

Browse files
authored
Merge branch 'master' into dependabot/nuget/UnitTest/xunit.runner.visualstudio-3.1.5
2 parents 22ab37e + a55e92b commit f9b9e82

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222

2323
- name: Setup .NET
24-
uses: actions/setup-dotnet@v4
24+
uses: actions/setup-dotnet@v5
2525
with:
2626
dotnet-version: '10.0.x'
2727

2828
- name: Cache NuGet packages
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.nuget/packages
3232
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -43,7 +43,7 @@ jobs:
4343
run: dotnet test --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage"
4444

4545
- name: Upload coverage reports
46-
uses: codecov/codecov-action@v4
46+
uses: codecov/codecov-action@v5
4747
if: matrix.os == 'ubuntu-latest'
4848
with:
4949
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Greet new contributors
18-
uses: actions/first-interaction@v1
18+
uses: actions/first-interaction@v3
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
2121
issue-message: |

UnitTest/UnitTest.csproj

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

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
13-
<PackageReference Include="xunit" Version="2.9.2" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
13+
<PackageReference Include="xunit" Version="2.9.3" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="6.0.2">
18+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>

0 commit comments

Comments
 (0)