Skip to content

Commit fae639d

Browse files
authored
Merge pull request #195 from hjgraca/update-dotnet-sdk-6.0.405
chore: update dotnet sdk to 6.0.405
2 parents 642f63a + 0bcc4fe commit fae639d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET 6.0
2020
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
2121
with:
22-
dotnet-version: 6.0.302
22+
dotnet-version: 6.0.405
2323
- name: Install solution dependencies
2424
run: dotnet restore
2525
- name: Build

.github/workflows/docs.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,14 @@ jobs:
4343
- name: Setup .NET 6.0
4444
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
4545
with:
46-
dotnet-version: 6.0.302
46+
dotnet-version: 6.0.405
4747
- name: Install solution dependencies
4848
run: |
49-
dotnet tool install -g docfx
49+
dotnet new tool-manifest
50+
dotnet tool install docfx
5051
- name: Create API docs
5152
run: |
52-
docfx apidocs/docfx.json
53+
dotnet docfx apidocs/docfx.json
5354
- name: Release API docs to latest
5455
uses: peaceiris/actions-gh-pages@bd8c6b06eba6b3d25d72b7a1767993c0aeee42e7 # v3.9.2
5556
with:

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.302"
3+
"version": "6.0.405"
44
}
55
}

libraries/tests/AWS.Lambda.Powertools.Logging.Tests/AWS.Lambda.Powertools.Logging.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0-preview-20221221-03" />
18-
<PackageReference Include="Moq" Version="4.18.3" />
18+
<PackageReference Include="Moq" Version="4.18.4" />
1919
<PackageReference Include="xunit" Version="2.4.2" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
2121
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)