Skip to content

Commit a27974b

Browse files
authored
chore: Bump macOS runners to macos-13 (#4152)
bump macos runner to 13 Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
1 parent 93ddb11 commit a27974b

File tree

6 files changed

+6
-21
lines changed

6 files changed

+6
-21
lines changed

.github/fork_workflows/fork_pr_integration_tests_aws.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,6 @@ jobs:
137137
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
138138
sudo apt update
139139
sudo apt install -y -V libarrow-dev
140-
- name: Install apache-arrow on macos
141-
if: matrix.os == 'macos-12'
142-
run: |
143-
brew install apache-arrow
144-
brew install pkg-config
145140
- name: Install dependencies
146141
run: make install-python-ci-dependencies
147142
- name: Setup Redis Cluster

.github/fork_workflows/fork_pr_integration_tests_gcp.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ jobs:
8181
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
8282
sudo apt update
8383
sudo apt install -y -V libarrow-dev
84-
- name: Install apache-arrow on macos
85-
if: matrix.os == 'macOS-12'
86-
run: |
87-
brew install apache-arrow
88-
brew install pkg-config
8984
- name: Install dependencies
9085
run: make install-python-ci-dependencies
9186
- name: Setup Redis Cluster

.github/fork_workflows/fork_pr_integration_tests_snowflake.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@ jobs:
7171
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
7272
sudo apt update
7373
sudo apt install -y -V libarrow-dev
74-
- name: Install apache-arrow on macos
75-
if: matrix.os == 'macos-12'
76-
run: |
77-
brew install apache-arrow
78-
brew install pkg-config
7974
- name: Install dependencies
8075
run: make install-python-ci-dependencies
8176
- name: Setup Redis Cluster

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
build-source-distribution:
8181
name: Build source distribution
82-
runs-on: macos-12
82+
runs-on: macos-13
8383
steps:
8484
- uses: actions/checkout@v4
8585
- name: Setup Python
@@ -136,7 +136,7 @@ jobs:
136136
needs: [build-python-wheel, build-source-distribution, get-version]
137137
strategy:
138138
matrix:
139-
os: [ubuntu-latest, macos-12 ]
139+
os: [ubuntu-latest, macos-13 ]
140140
python-version: ["3.9", "3.10"]
141141
from-source: [ True, False ]
142142
env:
@@ -165,7 +165,7 @@ jobs:
165165
name: wheels
166166
path: dist
167167
- name: Install OS X dependencies
168-
if: matrix.os == 'macos-12'
168+
if: matrix.os == 'macos-13'
169169
run: brew install coreutils
170170
- name: Install wheel
171171
if: ${{ !matrix.from-source }}

.github/workflows/nightly-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
sudo apt update
198198
sudo apt install -y -V libarrow-dev
199199
- name: Install apache-arrow on macos
200-
if: matrix.os == 'macos-12'
200+
if: matrix.os == 'macos-13'
201201
run: brew install apache-arrow
202202
- name: Install dependencies
203203
run: make install-python-ci-dependencies

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
fail-fast: false
99
matrix:
1010
python-version: [ "3.9", "3.10" ]
11-
os: [ ubuntu-latest, macos-12 ]
11+
os: [ ubuntu-latest, macos-13 ]
1212
exclude:
13-
- os: macos-12
13+
- os: macos-13
1414
python-version: "3.9"
1515
env:
1616
OS: ${{ matrix.os }}

0 commit comments

Comments
 (0)