Skip to content

Commit 67d85d5

Browse files
loekensgardclaude
andcommitted
fix: update dependencies from dependabot PRs
GitHub Actions: - actions/checkout: 5.0.1 → 6.0.0 - actions/setup-dotnet: 5.0.0 → 5.0.1 - docker/metadata-action: 5.9.0 → 5.10.0 - actions/create-github-app-token: 2.1.4 → 2.2.0 NuGet packages: - Microsoft.NET.Test.Sdk: 17.14.1 → 18.0.1 (fixes .NET 10 code coverage) - Serilog.AspNetCore: 9.0.0 → 10.0.0 (.NET 10 support) - xunit.runner.visualstudio: 3.1.4 → 3.1.5 Consolidates PRs #158, #159, #160, #161, #162 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ceca26e commit 67d85d5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
build-and-test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
15+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1616

1717
- name: Setup dotnet
18-
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
18+
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
1919
with:
2020
dotnet-version: |
2121
8.0.x

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
id-token: write # enable GitHub OIDC token issuance for trusted publishing
1414
contents: read
1515
steps:
16-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
16+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1717

1818
- name: Setup .NET 10
19-
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
19+
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
2020
with:
2121
dotnet-version: 10.0.*
2222

@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Docker meta
3030
id: meta
31-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
31+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
3232
with:
3333
flavor: |
3434
latest=false

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
16+
- uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
1717
id: app-token
1818
with:
1919
app-id: ${{ vars.RELEASE_BOT_APP_ID }}

src/Intility.Logging.AspNetCore/Intility.Logging.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<ItemGroup>
3232
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.0" />
3333
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
34-
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
34+
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
3535
</ItemGroup>
3636

3737

tests/Intility.Logging.Tests/Intility.Logging.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="coverlet.collector" Version="6.0.4" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1313
<PackageReference Include="xunit" Version="2.9.3" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

0 commit comments

Comments
 (0)