From 9dcf40f1ba5be75348367784e296d3229814bedd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 00:11:58 +0000 Subject: [PATCH 1/3] Bump dotnet-sdk from 10.0.100 to 10.0.101 Bumps [dotnet-sdk](https://github.com/dotnet/sdk) from 10.0.100 to 10.0.101. - [Release notes](https://github.com/dotnet/sdk/releases) - [Commits](https://github.com/dotnet/sdk/compare/v10.0.100...v10.0.101) --- updated-dependencies: - dependency-name: dotnet-sdk dependency-version: 10.0.101 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index fe954fe1..05d6d507 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.100", + "version": "10.0.101", "rollForward": "latestMinor" } } \ No newline at end of file From 77c3751b97917f003f3927c92be5fba48a3dd0ab Mon Sep 17 00:00:00 2001 From: Timothy Miller Date: Mon, 15 Dec 2025 15:30:49 +0900 Subject: [PATCH 2/3] Use global.json --- .github/workflows/nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 5474e756..c8367bea 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.x + global-json-file: global.json - name: Build and Pack Nugets run: dotnet pack src/FishyFlip.slnx --configuration Release --output nupkg From fc54f739ac44279bbc7c8e5195ea17eac3775270 Mon Sep 17 00:00:00 2001 From: Timothy Miller Date: Mon, 15 Dec 2025 15:34:16 +0900 Subject: [PATCH 3/3] Use global.json --- .github/workflows/nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index c8367bea..e0219755 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -42,7 +42,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.x + global-json-file: global.json - name: Run FishyFlip.Tests run: dotnet test src/FishyFlip.Tests/FishyFlip.Tests.csproj -- --report-trx --results-directory ../../dotnet-test-results