Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "10.0.3",
"version": "10.0.5",
"commands": [
"dotnet-ef"
],
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU for multi-arch builds
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Tag and push images to GHCR
env:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ jobs:
- uses: actions/checkout@v6

- name: Set up .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '22'

Expand All @@ -101,7 +101,7 @@ jobs:
dotnet docfx docfx.json

- name: Upload site artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docfx-site
path: .docfx/_site
Expand All @@ -119,13 +119,13 @@ jobs:

steps:
- name: Download site artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docfx-site
path: .docfx/_site

- name: Configure GitHub Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
Expand All @@ -134,4 +134,4 @@ jobs:

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Promote images to :latest and semver tags
env:
Expand Down
16 changes: 8 additions & 8 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- .NET Version-Coupled Packages -->
<!-- These should match the .NET version (e.g., 10.0.x for .NET 10) -->
<MicrosoftExtensionsVersion>10.0.5</MicrosoftExtensionsVersion>
<EfCoreVersion>10.0.4</EfCoreVersion>
<EfCoreVersion>10.0.5</EfCoreVersion>
<AspNetCoreVersion>10.0.2</AspNetCoreVersion>
</PropertyGroup>
<ItemGroup>
Expand Down Expand Up @@ -54,10 +54,10 @@
<!-- ======================================
CQRS & Messaging (Wolverine)
====================================== -->
<PackageVersion Include="WolverineFx" Version="5.24.0" />
<PackageVersion Include="WolverineFx.FluentValidation" Version="5.24.0" />
<PackageVersion Include="WolverineFx.EntityFrameworkCore" Version="5.24.0" />
<PackageVersion Include="WolverineFx.Postgresql" Version="5.24.0" />
<PackageVersion Include="WolverineFx" Version="5.27.0" />
<PackageVersion Include="WolverineFx.FluentValidation" Version="5.27.0" />
<PackageVersion Include="WolverineFx.EntityFrameworkCore" Version="5.27.0" />
<PackageVersion Include="WolverineFx.Postgresql" Version="5.27.0" />
<PackageVersion Include="FluentValidation" Version="12.1.1" />
<PackageVersion Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
<!-- ======================================
Expand Down Expand Up @@ -112,7 +112,7 @@
<!-- ======================================
Cloud Storage (AWS S3)
====================================== -->
<PackageVersion Include="AWSSDK.S3" Version="4.0.18.7" />
<PackageVersion Include="AWSSDK.S3" Version="4.0.20.2" />
<!-- ======================================
Microsoft.Extensions.*
====================================== -->
Expand Down Expand Up @@ -151,7 +151,7 @@
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
<PackageVersion Include="Bogus" Version="35.6.5" />
<PackageVersion Include="bunit" Version="2.6.2" />
<PackageVersion Include="bunit" Version="2.7.2" />
<PackageVersion Include="AwesomeAssertions" Version="9.4.0" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="Testcontainers" Version="4.11.0" />
Expand All @@ -177,7 +177,7 @@
<!-- ======================================
Blazor UI Components (BlazorBlueprint)
====================================== -->
<PackageVersion Include="BlazorBlueprint.Components" Version="3.9.2" />
<PackageVersion Include="BlazorBlueprint.Components" Version="3.9.3" />
<PackageVersion Include="BlazorBlueprint.Icons.Lucide" Version="2.0.0" />
<!-- ======================================
Tailwind CSS (NuGet-based integration)
Expand Down
2 changes: 1 addition & 1 deletion tests/Wallow.E2E.Tests/Infrastructure/TotpHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static string GenerateCode(string base32Secret)
/// Generates a TOTP code that is guaranteed to have at least <paramref name="minRemainingSeconds"/>
/// of validity remaining. If the current window is about to expire, waits for the next window.
/// </summary>
public static async Task<string> GenerateFreshCodeAsync(string base32Secret, int minRemainingSeconds = 5)
public static async Task<string> GenerateFreshCodeAsync(string base32Secret, int minRemainingSeconds = 10)
{
ArgumentException.ThrowIfNullOrWhiteSpace(base32Secret);
ArgumentOutOfRangeException.ThrowIfNegativeOrZero(minRemainingSeconds);
Expand Down
Loading