Fix CI build issues

Update to latest .clang-format

Update to C++23 which is required for some dependencies which requires
meson >1.1.1

Change-Id: I45ee122e2e95595ae78462d32e16da288fb67008
Signed-off-by: Jason M. Bills <jason.m.bills@intel.com>
diff --git a/src/meson.build b/src/meson.build
index b1541f8..4cbda2a 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,10 +1,10 @@
-if get_option('phosphor-u-boot-env-mgrd').allowed()

-    executable(

-        'phosphor-u-boot-env-mgr',

-        'u-boot-env-mgr.cpp',

-        'mainapp.cpp',

-        include_directories : incdir,

-        dependencies: default_deps,

-        install: true,

-    )

-endif
\ No newline at end of file
+if get_option('phosphor-u-boot-env-mgrd').allowed()
+    executable(
+        'phosphor-u-boot-env-mgr',
+        'u-boot-env-mgr.cpp',
+        'mainapp.cpp',
+        include_directories: incdir,
+        dependencies: default_deps,
+        install: true,
+    )
+endif
diff --git a/src/u-boot-env-mgr.cpp b/src/u-boot-env-mgr.cpp
index aba8c56..75f4ece 100644
--- a/src/u-boot-env-mgr.cpp
+++ b/src/u-boot-env-mgr.cpp
@@ -76,8 +76,8 @@
 
     iface->register_method(
         "Write", [this](const std::string& key, const std::string& value) {
-        writeVariable(key, value);
-    });
+            writeVariable(key, value);
+        });
     iface->initialize(true);
 }