Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 3bd44ac

Browse files
authored
pin macos test runners to macos-12 (#1195)
1 parent 49d6c1e commit 3bd44ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/integration-test-matrix.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = ({ context }) => {
4444

4545
if (labels.includes("test macos") || testAllLabel) {
4646
include.push({
47-
os: "macos-latest",
47+
os: "macos-12",
4848
adapter,
4949
"python-version": pythonVersion,
5050
});
@@ -78,7 +78,7 @@ module.exports = ({ context }) => {
7878
// additionally include runs for all adapters, on macos and windows,
7979
// but only for the default python version
8080
for (const adapter of supportedAdapters) {
81-
for (const operatingSystem of ["windows-latest", "macos-latest"]) {
81+
for (const operatingSystem of ["windows-latest", "macos-12"]) {
8282
include.push({
8383
os: operatingSystem,
8484
adapter: adapter,

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
strategy:
174174
fail-fast: false
175175
matrix:
176-
os: [ubuntu-latest, macos-latest, windows-latest]
176+
os: [ubuntu-latest, macos-12, windows-latest]
177177
python-version: ['3.8', '3.9', '3.10', '3.11']
178178

179179
steps:

0 commit comments

Comments
 (0)