Skip to content

Commit 0ddeca6

Browse files
build: bump the all group with 4 updates (#144)
* build: bump the all group with 4 updates --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thorstein Løkensgard <[email protected]>
1 parent 0d4fd68 commit 0ddeca6

File tree

8 files changed

+12
-24
lines changed

8 files changed

+12
-24
lines changed

.github/workflows/build.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- main
7+
pull_request:
8+
branches:
9+
- main
710

811
jobs:
912
build:

.github/workflows/build-and-release.yaml .github/workflows/release.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
tags:
66
- v*
7-
pull_request:
8-
branches:
9-
- main
107

118
jobs:
129
build:
@@ -28,7 +25,6 @@ jobs:
2825

2926
- name: Docker meta
3027
id: meta
31-
if: github.event_name != 'pull_request'
3228
uses: docker/metadata-action@v5
3329
with:
3430
sep-tags: ";"
@@ -37,9 +33,7 @@ jobs:
3733
type=semver,pattern={{version}}
3834
3935
- name: Pack .NET project
40-
if: github.event_name != 'pull_request'
4136
run: dotnet pack Intility.Logging.sln -o Intility.Logging/output --property:Version=${{ steps.meta.outputs.tags }}
4237

4338
- name: Publish to NuGet
44-
if: github.event_name != 'pull_request'
4539
run: dotnet nuget push Intility.Logging/output/*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

Intility.Logging.sln

-11
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerSample", "samples\Wor
2424
EndProject
2525
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MinimalApiSample", "samples\MinimalApiSample\MinimalApiSample.csproj", "{B647AC70-7210-462A-A43C-6EB4AFCB7ED4}"
2626
EndProject
27-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{FEC7C612-B49E-41BD-B29A-9EFC84E92F42}"
28-
EndProject
29-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.csproj", "{B27B120C-6614-4A6D-816F-F8B22DBFE789}"
30-
EndProject
3127
Global
3228
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3329
Debug|Any CPU = Debug|Any CPU
@@ -122,12 +118,6 @@ Global
122118
{B647AC70-7210-462A-A43C-6EB4AFCB7ED4}.Release|x64.Build.0 = Release|Any CPU
123119
{B647AC70-7210-462A-A43C-6EB4AFCB7ED4}.Release|x86.ActiveCfg = Release|Any CPU
124120
{B647AC70-7210-462A-A43C-6EB4AFCB7ED4}.Release|x86.Build.0 = Release|Any CPU
125-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
126-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Debug|x64.ActiveCfg = Debug|Any CPU
127-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Debug|x86.ActiveCfg = Debug|Any CPU
128-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Release|Any CPU.ActiveCfg = Release|Any CPU
129-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Release|x64.ActiveCfg = Release|Any CPU
130-
{B27B120C-6614-4A6D-816F-F8B22DBFE789}.Release|x86.ActiveCfg = Release|Any CPU
131121
EndGlobalSection
132122
GlobalSection(SolutionProperties) = preSolution
133123
HideSolutionNode = FALSE
@@ -140,7 +130,6 @@ Global
140130
{2C7C52E9-835F-4051-9A5E-7D985545A795} = {A5767C5D-9A48-4485-8D5E-686F34B2B766}
141131
{25312E6A-4BA3-4FDF-AA7C-CF2A10CDA2AA} = {A5767C5D-9A48-4485-8D5E-686F34B2B766}
142132
{B647AC70-7210-462A-A43C-6EB4AFCB7ED4} = {A5767C5D-9A48-4485-8D5E-686F34B2B766}
143-
{B27B120C-6614-4A6D-816F-F8B22DBFE789} = {FEC7C612-B49E-41BD-B29A-9EFC84E92F42}
144133
EndGlobalSection
145134
GlobalSection(ExtensibilityGlobals) = postSolution
146135
SolutionGuid = {4B2214E5-8A73-47CE-9C97-4910BC331A86}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<p align="center">
99
<a href="https://github.com/Intility/Intility.Logging/actions">
10-
<img alt="Release workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/build-and-release.yaml/badge.svg" style="max-width:100%;">
10+
<img alt="Release workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/release.yaml/badge.svg" style="max-width:100%;">
1111
</a>
1212

1313
<a href="https://github.com/Intility/Intility.Logging/actions">

samples/WorkerSample/WorkerSample.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
9+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
10+
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.2" />
1011
</ItemGroup>
1112

1213
<ItemGroup>
1314
<ProjectReference Include="..\..\src\Intility.Extensions.Logging.Sentry\Intility.Extensions.Logging.Sentry.csproj" />
1415
<ProjectReference Include="..\..\src\Intility.Logging.AspNetCore\Intility.Logging.AspNetCore.csproj" />
1516
</ItemGroup>
1617
</Project>
18+

src/Intility.Extensions.Logging.Sentry/Intility.Extensions.Logging.Sentry.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="Sentry.AspNetCore" Version="5.0.1" />
24-
<PackageReference Include="Sentry.Serilog" Version="5.0.1" />
24+
<PackageReference Include="Sentry.Serilog" Version="5.1.1" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/Intility.Extensions.Logging/Intility.Extensions.Logging.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
32-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.2" />
3333
</ItemGroup>
3434

3535
<ItemGroup>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<PackageReference Include="Serilog.Enrichers.AssemblyName" Version="2.0.0" />
2626
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
2727
<PackageReference Include="Serilog.Enrichers.Memory" Version="1.0.4" />
28-
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.1" />
28+
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.2" />
2929
</ItemGroup>
3030

3131
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
@@ -35,8 +35,8 @@
3535
</ItemGroup>
3636

3737
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
38-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
39-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
38+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.2" />
39+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.2" />
4040
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
4141
</ItemGroup>
4242

0 commit comments

Comments
 (0)