Skip to content

Commit 0c8ef2c

Browse files
authored
fix(ci): migrate off the retired macos-13 runner (#5711)
`macos-13` runner is being retired, and jobs using it are beginning to fail with these errors: ``` The macOS-13 based runner images are now retired. For more details, see actions/runner-images#13046. The macOS-13 based runner images are being deprecated, consider switching to macOS-15 (macos-15-intel) or macOS 15 arm64 (macos-latest) instead. For more details see actions/runner-images#13046 ``` (for example, see https://github.com/prisma/prisma-engines/actions/runs/20172373777/job/57911402339). This commit migrates our macOS CI jobs to use the `macos-15` and `macos-15-intel` runners.
1 parent e3021e4 commit 0c8ef2c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-engines-apple-intel-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# minimum supported version of macOS
1919
MACOSX_DEPLOYMENT_TARGET: 10.15
20-
runs-on: macos-13
20+
runs-on: macos-15-intel
2121

2222
steps:
2323
- name: Output link to real commit

.github/workflows/build-engines-apple-silicon-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
SQLITE_MAX_VARIABLE_NUMBER: 250000
1616
SQLITE_MAX_EXPR_DEPTH: 10000
17-
runs-on: macos-13
17+
runs-on: macos-15
1818

1919
steps:
2020
- name: Output link to real commit

.github/workflows/test-compilation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os:
39-
- macos-13
39+
- macos-15
4040
crate:
4141
- schema-engine-cli
4242
- prisma-fmt

0 commit comments

Comments
 (0)