From 721dffa380992e854361b641df2968fadf3da2ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:32:59 +0000 Subject: [PATCH 1/2] Bump actions/setup-dotnet from 5.4.0 to 6.0.0 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 5.4.0 to 6.0.0. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5.4.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/buildandtest.yml | 2 +- .github/workflows/main_aboutcodemonkey85.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index 28e5392..8c2e519 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -28,7 +28,7 @@ jobs: # sets up .NET SDK - name: Setup .NET - uses: actions/setup-dotnet@v5.4.0 + uses: actions/setup-dotnet@v6.0.0 with: global-json-file: ./global.json diff --git a/.github/workflows/main_aboutcodemonkey85.yml b/.github/workflows/main_aboutcodemonkey85.yml index 63c1ce8..798fbc7 100644 --- a/.github/workflows/main_aboutcodemonkey85.yml +++ b/.github/workflows/main_aboutcodemonkey85.yml @@ -25,7 +25,7 @@ jobs: # sets up .NET SDK - name: Setup .NET - uses: actions/setup-dotnet@v5.4.0 + uses: actions/setup-dotnet@v6.0.0 with: global-json-file: ./global.json From ea708b4699f32b7616da935bb1a670fb1abb5282 Mon Sep 17 00:00:00 2001 From: Michael Bond Date: Fri, 17 Jul 2026 12:22:10 -0400 Subject: [PATCH 2/2] Bump WASM deps and .NET SDK patch versions Updates the Blazor WebAssembly package references from 10.0.9 to 10.0.10, upgrades MudBlazor from 9.6.0 to 9.7.0, and moves the pinned .NET SDK in global.json from 10.0.301 to 10.0.302 to keep the project aligned with the latest patch releases. --- AboutMe/Wasm/AboutMe.Wasm.csproj | 6 +++--- global.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AboutMe/Wasm/AboutMe.Wasm.csproj b/AboutMe/Wasm/AboutMe.Wasm.csproj index 839a064..5b2c51a 100644 --- a/AboutMe/Wasm/AboutMe.Wasm.csproj +++ b/AboutMe/Wasm/AboutMe.Wasm.csproj @@ -13,9 +13,9 @@ - - - + + + diff --git a/global.json b/global.json index 19342db..2216d4c 100644 --- a/global.json +++ b/global.json @@ -2,6 +2,6 @@ "sdk": { "allowPrerelease": false, "rollForward": "latestMinor", - "version": "10.0.301" + "version": "10.0.302" } }