From 21737f25360e6c011cd9668f9e3464a5687e37d1 Mon Sep 17 00:00:00 2001 From: Dmitry Kropachev Date: Thu, 16 Oct 2025 22:11:04 -0400 Subject: [PATCH] cicd: drop macos-13 runner It is being depricated, since we use it for x86 builds good replacement for it could be `macos-15-intel`. --- .github/workflows/lib-build-and-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lib-build-and-push.yml b/.github/workflows/lib-build-and-push.yml index f7df5361e4..809f49e29d 100644 --- a/.github/workflows/lib-build-and-push.yml +++ b/.github/workflows/lib-build-and-push.yml @@ -61,7 +61,7 @@ jobs: was_added=1 elif [[ "${target}" == "macos-x86" ]]; then [ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json - echo -n '{"os":"macos-13", "target": "macos-x86"}' >> /tmp/matrix.json + echo -n '{"os":"macos-15-intel", "target": "macos-x86"}' >> /tmp/matrix.json was_added=1 elif [[ "${target}" == "macos-arm" ]]; then [ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json @@ -134,9 +134,9 @@ jobs: if: runner.os == 'MacOS' run: | ##### Set MACOSX_DEPLOYMENT_TARGET - if [ "${{ matrix.os }}" == "macos-13" ]; then - echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV; - echo "Enforcing target deployment for 13.0" + if [ "${{ matrix.os }}" == "macos-15-intel" ]; then + echo "MACOSX_DEPLOYMENT_TARGET=15.0" >> $GITHUB_ENV; + echo "Enforcing target deployment for 15.0" elif [ "${{ matrix.os }}" == "macos-14" ]; then echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV; echo "Enforcing target deployment for 14.0"