From 93bda034d8a5518fa4743be545fe375c4881294a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 20:41:32 +0000 Subject: [PATCH 1/2] Update dependency dotnet-sdk to v9 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index dd909f70..ccd7812e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.403", + "version": "9.0.100", "rollForward": "latestFeature" } } From d07fa33a64ae8fddb2e5133f6d2e28423067bce8 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Tue, 19 Nov 2024 21:50:54 +0100 Subject: [PATCH 2/2] added net9 to CI --- .github/workflows/build.yml | 16 ++++++++++------ .github/workflows/codeql-analysis.yml | 8 ++++++-- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ce045fd..eb5bcb58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,13 +49,17 @@ jobs: run: git fetch --prune --unshallow - uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0 with: + # codecov needs 2.1 + # unittests needs 3.1 + # gitversion needs 5.0 + # cake 1.3 needs 6.0 + # .NET 9 to build dotnet-version: | - 2.1.818 - 3.1.x - 5.0.x - 6.0.x - 7.0.x - 8.0.x + 2.1 + 3.1 + 5.0 + 6.0 + 9.0 - name: Cache Tools uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 7dc7a2e4..333872aa 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -36,9 +36,13 @@ jobs: fetch-depth: 0 - uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0 with: + # gitversion needs 5.0 + # cake 1.3 needs 6.0 + # .NET 9 to build dotnet-version: | - 5.0.x - 8.0.x + 5.0 + 6.0 + 9.0 - name: Cache Tools uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4