From a5ed7b96f29df57429ff6cba07ff582f95cfa890 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 17 May 2026 20:40:32 +0000 Subject: [PATCH 1/4] Initial plan From b1deeec6b0e72fa4fbd2746275be14e98fc81d48 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 17 May 2026 20:48:24 +0000 Subject: [PATCH 2/4] Update GitHub workflows to .NET SDK 10.0.300 Agent-Logs-Url: https://github.com/fsprojects/FSharp.Data.GraphQL/sessions/15e8fbea-a112-4a8e-8d41-1959a307eb48 Co-authored-by: xperiandri <2365592+xperiandri@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/publish-ci.yml | 2 +- .github/workflows/publish-release.yml | 2 +- .github/workflows/pull-request.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 636afdfe..48aec245 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -32,7 +32,7 @@ jobs: uses: actions/setup-dotnet@v5 with: global-json-file: global.json - dotnet-version: 10.x + dotnet-version: 10.0.300 - name: Restore dependencies run: | diff --git a/.github/workflows/publish-ci.yml b/.github/workflows/publish-ci.yml index f31487b5..e141251e 100644 --- a/.github/workflows/publish-ci.yml +++ b/.github/workflows/publish-ci.yml @@ -8,7 +8,7 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - DOTNET_SDK_VERSION: 10.0.202 + DOTNET_SDK_VERSION: 10.0.300 jobs: publish: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index d4df8454..a73e6201 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -9,7 +9,7 @@ env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true SLEEP_DURATION: 60 - DOTNET_SDK_VERSION: 10.0.202 + DOTNET_SDK_VERSION: 10.0.300 jobs: publish: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 07356a39..7befa633 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, windows-latest, macOS-latest] - dotnet: [10.0.202] + dotnet: [10.0.300] runs-on: ${{ matrix.os }} steps: From 61a708866705e4e161d1760014890bd89d3a10d4 Mon Sep 17 00:00:00 2001 From: Andrii Chebukin Date: Sun, 17 May 2026 22:54:57 +0200 Subject: [PATCH 3/4] Revert unnecessary change --- .github/workflows/copilot-setup-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 48aec245..636afdfe 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -32,7 +32,7 @@ jobs: uses: actions/setup-dotnet@v5 with: global-json-file: global.json - dotnet-version: 10.0.300 + dotnet-version: 10.x - name: Restore dependencies run: | From 8d0010c42ac7f2dba9f09b6f09dba8ce58a26d99 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 17 May 2026 20:58:17 +0000 Subject: [PATCH 4/4] Align build script SDK to 10.0.300 Agent-Logs-Url: https://github.com/fsprojects/FSharp.Data.GraphQL/sessions/12aa4c72-c4f4-4ad8-88e2-80e7fa882b76 Co-authored-by: xperiandri <2365592+xperiandri@users.noreply.github.com> --- build/Program.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Program.fs b/build/Program.fs index f23d6841..9624a047 100644 --- a/build/Program.fs +++ b/build/Program.fs @@ -30,7 +30,7 @@ let ctx = Context.forceFakeContext () let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.EmbedAll) module DotNetCli = - let setVersion (o : DotNet.Options) = { o with Version = Some "10.0.202" } + let setVersion (o : DotNet.Options) = { o with Version = Some "10.0.300" } let setRestoreOptions (o : DotNet.RestoreOptions) = o.WithCommon setVersion let configurationString = Environment.environVarOrDefault "CONFIGURATION" "Release"