Skip to content

Commit 01c6fa8

Browse files
authored
Update macos-12 runners to macos-13 (#1274)
**Context:** GitHub is deprecating macos-12 runners: actions/runner-images#10721. They are initiating "brownouts" where certain actions on macos-12 runners will fail. We therefore need to update the runners to use macos-13.
1 parent 4c52cb6 commit 01c6fa8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-nightly-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Prepare wheels
7272
run: |
7373
rename "s/linux/manylinux_2_28/" dist/PennyLane_Catalyst-*
74-
rename "s/macosx_12_0_universal2/macosx_12_0_x86_64/" dist/PennyLane_Catalyst-*
74+
rename "s/macosx_13_0_universal2/macosx_13_0_x86_64/" dist/PennyLane_Catalyst-*
7575
rename "s/macosx_14_0_universal2/macosx_13_0_arm64/" dist/PennyLane_Catalyst-*
7676
rename "s/macosx_14/macosx_13/" dist/PennyLane_Catalyst-*
7777

.github/workflows/build-wheel-macos-x86_64.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
workflow_call:
1515

1616
env:
17-
MACOSX_DEPLOYMENT_TARGET: 12
17+
MACOSX_DEPLOYMENT_TARGET: 13
1818

1919
concurrency:
2020
group: Build Catalyst Wheel on macOS (x86_64)-${{ github.ref }}
@@ -40,7 +40,7 @@ jobs:
4040
python_version: ["3.10"]
4141

4242
name: Build Dependencies (Python ${{ matrix.python_version }})
43-
runs-on: macos-12
43+
runs-on: macos-13
4444

4545
if: needs.check_if_wheel_build_required.outputs.build-wheels == 'true'
4646

@@ -217,7 +217,7 @@ jobs:
217217
python_version: ${{ fromJson(needs.constants.outputs.python_versions) }}
218218

219219
name: Build Wheels (Python ${{ matrix.python_version }})
220-
runs-on: macos-12
220+
runs-on: macos-13
221221

222222
steps:
223223
- name: Checkout Catalyst repo
@@ -368,7 +368,7 @@ jobs:
368368

369369
# To check all wheels for supported python3 versions
370370
name: Test Wheels (Python ${{ matrix.python_version }}) on Mac x86
371-
runs-on: macos-12
371+
runs-on: macos-13
372372

373373
steps:
374374
- name: Checkout Catalyst repo

0 commit comments

Comments
 (0)