From 8a1aabb133d228fd1c86eb4a3d1f91ad9673c31c Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Thu, 17 Oct 2024 23:02:41 +0200 Subject: [PATCH] CI: modernize macos builds to macos-15 macos-15 support was announced few months ago: https://github.com/github/roadmap/issues/986 --- .github/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/matrix.py b/.github/matrix.py index fb467c3222..f90bbac4e6 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -233,7 +233,7 @@ def main(ref_name): if "haproxy-" in ref_name: os = "macos-13" # stable branch else: - os = "macos-14" # development branch + os = "macos-15" # development branch TARGET = "osx" for CC in ["clang"]: