From b6a844a6d0c1114109b626f6c96bb7bac6ebccfc Mon Sep 17 00:00:00 2001 From: Sarah Gilmore <74676073+sgilmore10@users.noreply.github.com> Date: Tue, 26 Nov 2024 10:49:50 -0500 Subject: [PATCH] GH-44705: [MATLAB][PACKAGING] Update the crossbow MATLAB workflow to use `macOS 13` instead of `macOS 12` (#44858) ### Rationale for this change GitHub actions has started the deprecation process for `macOS 12`, which will be completed by December 3rd, 2024 according to [this issue](https://github.com/actions/runner-images/issues/10721). The MATLAB CI workflow has already been updated to use `macOS 13` instead of `macOS 12` (thanks @ kou for making this change!), but the crossbow MATLAB workflow still uses `macOS 12`. We need to update this workflow to use `macOS 13`. ### What changes are included in this PR? 1. Updated the MATLAB Crossbow GitHub workflow to use `macOS 13` instead of `macOS 12`. ### Are these changes tested? 1. Yes. Ran a crossbow job: https://github.com/ursacomputing/crossbow/actions/runs/12033796012/job/33548796169. ### Are there any user-facing changes? No. * GitHub Issue: #44705 Authored-by: Sarah Gilmore Signed-off-by: Sarah Gilmore --- dev/tasks/matlab/github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/tasks/matlab/github.yml b/dev/tasks/matlab/github.yml index 5de60c709ef30..8367ae58487ec 100644 --- a/dev/tasks/matlab/github.yml +++ b/dev/tasks/matlab/github.yml @@ -64,7 +64,7 @@ jobs: strategy: matrix: platform: - - { architecture: "AMD64", macos-version: "12", architecture-suffix: "x64"} + - { architecture: "AMD64", macos-version: "13", architecture-suffix: "x64"} - { architecture: "ARM64", macos-version: "14", architecture-suffix: "arm64"} steps: {{ macros.github_checkout_arrow()|indent }}