From a7715ba0c8392a103249df578339652e8f660434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Wed, 9 Sep 2026 15:50:09 +0200 Subject: [PATCH] Update github host from macos-13 to macos-15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macos-13 is no more available https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ it is causing a lot of PR jobs to wait in queue for a long time when there is a PR on 4.1 branch it has been already upgraded on main branch Signed-off-by: Aurélien Pupier --- .github/workflows/build-thirdparty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-thirdparty.yml b/.github/workflows/build-thirdparty.yml index 093bc8092c254f..90b8f33640c8ea 100644 --- a/.github/workflows/build-thirdparty.yml +++ b/.github/workflows/build-thirdparty.yml @@ -175,7 +175,7 @@ jobs: name: Build Third Party Libraries (macOS) needs: changes if: ${{ needs.changes.outputs.thirdparty_changes == 'true' }} - runs-on: macos-13 + runs-on: macos-15 steps: - name: Checkout ${{ github.ref }} uses: actions/checkout@v4