From 5e4cde21023e293e054ee8050a7d5eb23fe4516d Mon Sep 17 00:00:00 2001 From: Bertrand THOMAS Date: Sat, 6 Dec 2025 23:06:01 +0100 Subject: [PATCH 1/2] Add .net 10 as default --- dotnet/build-lint-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/build-lint-test/action.yml b/dotnet/build-lint-test/action.yml index 4a4fe46..995974e 100644 --- a/dotnet/build-lint-test/action.yml +++ b/dotnet/build-lint-test/action.yml @@ -5,7 +5,7 @@ inputs: dotnet_version: description: .NET SDK version to be used required: false - default: '8.0.x' + default: '10.0.x' sonar_enabled: description: Enable code scan by Sonar required: false From 4bf0b7fe41bbfaffe4570d58b732b5e0c5f058a3 Mon Sep 17 00:00:00 2001 From: Bertrand THOMAS Date: Sat, 6 Dec 2025 23:06:12 +0100 Subject: [PATCH 2/2] Update MongoDB to 8.2 --- mongodb/start/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mongodb/start/action.yml b/mongodb/start/action.yml index 1ac0792..78d995d 100644 --- a/mongodb/start/action.yml +++ b/mongodb/start/action.yml @@ -10,8 +10,8 @@ runs: curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | \ sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \ --dearmor - echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | \ - sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list + echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.2 multiverse" | + sudo tee /etc/apt/sources.list.d/mongodb-org-8.2.list sudo apt-get update sudo apt-get install -y mongodb-org sudo systemctl start mongod