Skip to content

Commit ad6ba9b

Browse files
chore(deps): Updated nuget and build dependencies (#64)
* chore(deps): update dependency nerdbank.gitversioning to v3.6.133 * chore(deps): update actions/checkout action to v4 * chore(deps): update amannn/action-semantic-pull-request action to v5.4.0 * chore(deps): update apexskier/github-release-commenter action to v1.3.6 * chore(deps): update dotnet/nbgv action to v0.4.2 * chore(deps): update dependency saucecontrol.inheritdoc to v2 * chore(deps): update dependency dotnet-sdk to v8.0.201 * chore(deps): update github artifact actions to v4 * chore(deps): update danielpalme/reportgenerator-github-action action to v5.2.2 * chore (deps): Updated nuget dependencies where possible --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6282495 commit ad6ba9b

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Checkout sources
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
- name: Setup .NET
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run tests
3131
run: dotnet test --collect:"XPlat Code Coverage" --logger "GitHubActions"
3232
- name: Upload coverage
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: Code coverage ${{ matrix.os }}
3636
path: "**/coverage.cobertura.xml"
@@ -40,23 +40,23 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout sources
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
- name: Setup .NET
4545
uses: actions/setup-dotnet@v4
46-
- uses: actions/download-artifact@v3
46+
- uses: actions/download-artifact@v4
4747
with:
4848
name: Code coverage ubuntu-latest
4949
path: coverage-ubuntu
50-
- uses: actions/download-artifact@v3
50+
- uses: actions/download-artifact@v4
5151
with:
5252
name: Code coverage windows-latest
5353
path: coverage-windows
54-
- uses: actions/download-artifact@v3
54+
- uses: actions/download-artifact@v4
5555
with:
5656
name: Code coverage macos-latest
5757
path: coverage-macos
5858
- name: Generate coverage report
59-
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.19
59+
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.2
6060
with:
6161
reports: "**/coverage.cobertura.xml"
6262
targetdir: "coverage-report"
@@ -73,15 +73,15 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- name: Checkout sources
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v4
7777
with:
7878
fetch-depth: 0
7979
- name: Setup .NET
8080
uses: actions/setup-dotnet@v4
8181
- name: Create packages
8282
run: dotnet pack --configuration Release --output ./packages
8383
- name: Upload a Build Artifact
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: NuGet packages
8787
path: packages/*.*
@@ -92,18 +92,18 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- name: Checkout sources
95-
uses: actions/checkout@v3
95+
uses: actions/checkout@v4
9696
with:
9797
fetch-depth: 0
9898
- name: Setup .NET
9999
uses: actions/setup-dotnet@v4
100-
- uses: actions/download-artifact@v3
100+
- uses: actions/download-artifact@v4
101101
with:
102102
name: NuGet packages
103103
path: packages
104104
- name: Push packages
105105
run: dotnet nuget push "packages/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
106-
- uses: dotnet/[email protected].0
106+
- uses: dotnet/[email protected].2
107107
id: nbgv
108108
- name: Create GitHub release
109109
uses: actions/create-release@v1
@@ -113,7 +113,7 @@ jobs:
113113
tag_name: v${{ steps.nbgv.outputs.SemVer2 }}
114114
release_name: v${{ steps.nbgv.outputs.SemVer2 }}
115115
- name: Comment relevant issues and merge requests
116-
uses: apexskier/[email protected].2
116+
uses: apexskier/[email protected].6
117117
with:
118118
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
119119
comment-template: |

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
name: Check PR title
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: amannn/action-semantic-pull-request@v5.2.0
13+
- uses: amannn/action-semantic-pull-request@v5.4.0
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
</PropertyGroup>
2020
<ItemGroup>
2121
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="17.*" />
22-
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.119">
22+
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2424
<PrivateAssets>all</PrivateAssets>
2525
</PackageReference>
26-
<PackageReference Include="SauceControl.InheritDoc" Version="1.4.0" PrivateAssets="all" />
27-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
26+
<PackageReference Include="SauceControl.InheritDoc" Version="2.0.1" PrivateAssets="all" />
27+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
<PrivateAssets>all</PrivateAssets>
3030
</PackageReference>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
3+
"version": "8.0.201",
44
"rollForward": "latestMinor"
55
}
66
}

tests/Directory.Build.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="NUnit" Version="3.13.2" />
15-
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
17-
<PackageReference Include="coverlet.collector" Version="1.3.0" />
18-
<PackageReference Include="GitHubActionsTestLogger" Version="1.1.2" />
19-
<PackageReference Include="Snapshooter.NUnit" Version="0.5.8" />
14+
<PackageReference Include="NUnit" Version="3.14.0" />
15+
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
17+
<PackageReference Include="coverlet.collector" Version="6.0.1" />
18+
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.3" />
19+
<PackageReference Include="Snapshooter.NUnit" Version="0.13.0" />
2020
</ItemGroup>
2121
</Project>

0 commit comments

Comments
 (0)