Skip to content

Commit a9bc4b3

Browse files
committed
Merge remote-tracking branch 'origin/dev' into beta
2 parents b5c97ea + 44e1f5e commit a9bc4b3

15 files changed

Lines changed: 1942 additions & 1994 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-slim
2727
permissions:
2828
actions: read
2929
contents: read
@@ -42,12 +42,12 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848

4949
- name: Autobuild
50-
uses: github/codeql-action/autobuild@v3
50+
uses: github/codeql-action/autobuild@v4
5151

5252
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@v3
53+
uses: github/codeql-action/analyze@v4

.github/workflows/component-detection.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
workflow_dispatch:
55
push:
66

7-
permissions:
7+
permissions:
88
id-token: write
99
contents: write
1010

1111
jobs:
1212
dependency-submission:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-slim
1414
steps:
1515
- uses: actions/checkout@v5
16-
- name: Component detection
16+
- name: Component detection
1717
uses: advanced-security/component-detection-dependency-submission-action@v0.1.0

.github/workflows/dependency-review.yaml

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

77
jobs:
88
dependency-review:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: "Checkout Repository"
1212
uses: actions/checkout@v5
1313
- name: "Dependency Review"
14-
uses: actions/dependency-review-action@v4.7.3
14+
uses: actions/dependency-review-action@v4.8.1

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v5
2525
- name: Setup .NET
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v5
2727
with:
2828
global-json-file: global.json
2929
- name: Restore dependencies
@@ -33,7 +33,7 @@ jobs:
3333
- name: Test
3434
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage"
3535
- name: Upload coverage reports to Codecov
36-
uses: codecov/codecov-action@v5.5.0
36+
uses: codecov/codecov-action@v5.5.1
3737
with:
3838
token: ${{ secrets.CODECOV_TOKEN }}
3939
slug: AlbusKavaliro/TempMaiSe

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Name the Job
3030
name: Lint Code Base
3131
# Set the agent to run on
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-slim
3333

3434
############################################
3535
# Grant status permission for MULTI_STATUS #

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
release:
1616
name: Release
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-slim
1818
permissions:
1919
contents: write # to be able to publish a GitHub release
2020
issues: write # to be able to comment on released issues
@@ -27,13 +27,13 @@ jobs:
2727
with:
2828
fetch-depth: 0
2929
- name: Setup .NET
30-
uses: actions/setup-dotnet@v4
30+
uses: actions/setup-dotnet@v5
3131
with:
3232
global-json-file: global.json
3333
- name: Restore dependencies
3434
run: dotnet restore --locked-mode
3535
- name: Setup Node.js
36-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@v6
3737
with:
3838
node-version: "lts/*"
3939
check-latest: true

.github/workflows/semantic-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
main:
1515
name: Validate PR title
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-slim
1717
steps:
1818
- uses: amannn/action-semantic-pull-request@v6
1919
env:

Directory.Packages.props

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,47 +5,48 @@
55
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageVersion Include="jcamp.FluentEmail.Core" Version="3.8.0" />
9-
<PackageVersion Include="jcamp.FluentEmail.MailKit" Version="3.8.0" />
10-
<PackageVersion Include="jcamp.FluentEmail.Smtp" Version="3.8.0" />
8+
<PackageVersion Include="jcamp.FluentEmail.Core" Version="4.0.0" />
9+
<PackageVersion Include="jcamp.FluentEmail.MailKit" Version="4.0.0" />
10+
<PackageVersion Include="jcamp.FluentEmail.Smtp" Version="4.0.0" />
11+
<PackageVersion Include="Microsoft.Build" Version="17.10.46" />
1112
</ItemGroup>
1213
<ItemGroup>
13-
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
14+
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
1415
<PackageVersion Include="Newtonsoft.Json.Schema" Version="4.0.1" />
1516
</ItemGroup>
1617
<ItemGroup>
17-
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.12.0" />
18-
<PackageVersion Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
19-
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.12.0" />
20-
<PackageVersion Include="OpenTelemetry.Instrumentation.Http" Version="1.12.0" />
18+
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.13.1" />
19+
<PackageVersion Include="OpenTelemetry.Exporter.Console" Version="1.13.1" />
20+
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.13.0" />
21+
<PackageVersion Include="OpenTelemetry.Instrumentation.Http" Version="1.13.0" />
2122
</ItemGroup>
2223
<ItemGroup Label="Microsoft">
23-
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.8" />
24-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.7" />
25-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.7" />
26-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.7" />
24+
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.10" />
25+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.10" />
26+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.10" />
27+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.10" />
2728
<PackageVersion Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
2829
</ItemGroup>
2930
<ItemGroup Label="Microsoft">
30-
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.8" />
31-
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.7" />
32-
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.0.7" />
33-
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.7" />
31+
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.10" />
32+
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.10" />
33+
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.0.10" />
34+
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.10" />
3435
<PackageVersion Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.7" />
3536
</ItemGroup>
3637
<ItemGroup>
37-
<PackageVersion Include="Fluid.Core" Version="2.25.0" />
38+
<PackageVersion Include="Fluid.Core" Version="2.30.0" />
3839
</ItemGroup>
3940
<ItemGroup Label="Tests">
40-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
41+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
4142
<PackageVersion Include="xunit" Version="2.9.3" />
42-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.4" />
43+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
4344
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
4445
<PackageVersion Include="Moq" Version="4.20.72" />
45-
<PackageVersion Include="Testcontainers.Papercut" Version="4.6.0" />
46+
<PackageVersion Include="Testcontainers.Papercut" Version="4.8.1" />
4647
</ItemGroup>
4748
<ItemGroup Label="Tests">
48-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.8" />
49+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.10" />
4950
</ItemGroup>
5051
<ItemGroup>
5152
<PackageVersion Include="OneOf" Version="3.0.271" />

0 commit comments

Comments
 (0)