diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b6845541288764659bf438384848a814ed90d08d..4851b9d2eb9453f8bf1ebf23d1835f1c040ef70b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -83,7 +83,7 @@ build_macos_x86_64:
     - macOS
   script:
     - autoreconf -si
-    - './configure CC=gcc-11 CXX=g++-11 LDFLAGS="-static-libgcc -s" LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison'
+    - './configure CC=gcc-12 CXX=g++-12 LDFLAGS="-static-libgcc -s" LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison'
     - make -j$(nproc)
     - mkdir -p $CI_COMMIT_SHA/macos-x86_64
     - tar -caf $CI_COMMIT_SHA/macos-x86_64/dynare-preprocessor.tar.gz -C src dynare-preprocessor
diff --git a/src/ModelTree.cc b/src/ModelTree.cc
index b03581cae97366298dd502a9ad398faa6872ea52..d69b605ba525996dc88b9dbb10968908a4c127ef 100644
--- a/src/ModelTree.cc
+++ b/src/ModelTree.cc
@@ -1601,8 +1601,8 @@ ModelTree::matlab_arch(const string &mexext)
 string
 ModelTree::findGccOnMacos(const string &mexext)
 {
-  const string macos_gcc_version{"11"}; // doc/manual/source/installation-and-configuration.rst
-                                        // should be updated when this is changed
+  const string macos_gcc_version {"12"}; // doc/manual/source/installation-and-configuration.rst
+                                         // should be updated when this is changed
   char dynare_preprocessor_path[PATH_MAX];
   uint32_t size = PATH_MAX;
   string local_gcc_path;