From 3978c566044d11f9afa9267f18776cddac13bbee Mon Sep 17 00:00:00 2001 From: "dependencyupdates[bot]" <218638057+dependencyupdates[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 04:42:50 +0000 Subject: [PATCH 1/2] Update actions/setup-dotnet action to v5.4.0 --- .github/workflows/build-containers.yml | 2 +- .github/workflows/build-db-container.yml | 2 +- .github/workflows/build-windows.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/container-integration-test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index ca5ca1188a..f34bc248b2 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -36,7 +36,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.3.0 + uses: actions/setup-dotnet@v5.4.0 with: global-json-file: global.json - name: Run MinVer diff --git a/.github/workflows/build-db-container.yml b/.github/workflows/build-db-container.yml index 4850c752f6..d72f5a1db7 100644 --- a/.github/workflows/build-db-container.yml +++ b/.github/workflows/build-db-container.yml @@ -20,7 +20,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.3.0 + uses: actions/setup-dotnet@v5.4.0 with: global-json-file: global.json - name: Run MinVer diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 4e5469df06..fd06455545 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.3.0 + uses: actions/setup-dotnet@v5.4.0 with: global-json-file: global.json - name: Download RavenDB Server diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17fa55432b..630af17e0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.3.0 + uses: actions/setup-dotnet@v5.4.0 with: global-json-file: global.json - name: Download RavenDB Server diff --git a/.github/workflows/container-integration-test.yml b/.github/workflows/container-integration-test.yml index b0604f52a5..de0efb5b88 100644 --- a/.github/workflows/container-integration-test.yml +++ b/.github/workflows/container-integration-test.yml @@ -54,7 +54,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.3.0 + uses: actions/setup-dotnet@v5.4.0 with: global-json-file: global.json - name: Run MinVer From 3c845055f19e17cc977a87c4481d067e04bf89fd Mon Sep 17 00:00:00 2001 From: David Boike Date: Fri, 26 Jun 2026 12:55:58 -0500 Subject: [PATCH 2/2] Change invalid global.json sdk version --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index abfe7f5ac2..6d57b5872f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.0", + "version": "10.0.100", "allowPrerelease": false, "rollForward": "latestFeature" },