Skip to content

Commit 99d4309

Browse files
committed
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`.
1 parent f52edbc commit 99d4309

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lib-build-and-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
was_added=1
6262
elif [[ "${target}" == "macos-x86" ]]; then
6363
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json
64-
echo -n '{"os":"macos-13", "target": "macos-x86"}' >> /tmp/matrix.json
64+
echo -n '{"os":"macos-15-intel", "target": "macos-x86"}' >> /tmp/matrix.json
6565
was_added=1
6666
elif [[ "${target}" == "macos-arm" ]]; then
6767
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json
@@ -134,9 +134,9 @@ jobs:
134134
if: runner.os == 'MacOS'
135135
run: |
136136
##### Set MACOSX_DEPLOYMENT_TARGET
137-
if [ "${{ matrix.os }}" == "macos-13" ]; then
138-
echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV;
139-
echo "Enforcing target deployment for 13.0"
137+
if [ "${{ matrix.os }}" == "macos-15-intel" ]; then
138+
echo "MACOSX_DEPLOYMENT_TARGET=15.0" >> $GITHUB_ENV;
139+
echo "Enforcing target deployment for 15.0"
140140
elif [ "${{ matrix.os }}" == "macos-14" ]; then
141141
echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV;
142142
echo "Enforcing target deployment for 14.0"

0 commit comments

Comments
 (0)