Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: switch to macos-13 #12326

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
shard:
- 1-2
- 2-2
Expand All @@ -34,7 +34,7 @@ jobs:
exclude:
- os: windows-latest
suite: chrome-bidi
- os: macos-latest
- os: macos-13
suite: chrome-headful
steps:
- name: Check out repository
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,21 +159,21 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
shard:
- 1-2
- 2-2
exclude:
- linux-only: true
os: windows-latest
- linux-only: true
os: macos-latest
os: macos-13
- linux-only: true
suite: chrome-headful

- os: windows-latest
suite: chrome-bidi
- os: macos-latest
- os: macos-13
suite: chrome-headful
steps:
- name: Check out repository
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
- firefox-headless
os:
- ubuntu-latest
- macos-latest
- macos-13
- windows-latest
shard:
- 1-4
Expand All @@ -263,11 +263,11 @@ jobs:
- linux-only: true
os: windows-latest
- linux-only: true
os: macos-latest
os: macos-13

- os: macos-latest
- os: macos-13
suite: firefox-headful
- os: macos-latest
- os: macos-13
suite: firefox-headless
- os: windows-latest
suite: firefox-headful
Expand Down Expand Up @@ -367,12 +367,12 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
exclude:
- linux-only: true
os: windows-latest
- linux-only: true
os: macos-latest
os: macos-13
steps:
- name: Download installation test
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d # v4.1.5
Expand Down Expand Up @@ -487,12 +487,12 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
exclude:
- linux-only: true
os: windows-latest
- linux-only: true
os: macos-latest
os: macos-13
steps:
- name: Checkout
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
Expand Down Expand Up @@ -541,12 +541,12 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
exclude:
- linux-only: true
os: windows-latest
- linux-only: true
os: macos-latest
os: macos-13
steps:
- name: Checkout
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deflake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:
options:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
retries:
description: Number of retries per test
required: false
Expand Down
2 changes: 1 addition & 1 deletion tools/analyze_issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ This issue has an invalid Puppeteer version: \`${value}\`. Versions must follow
runsOn = 'windows-latest';
break;
case 'macos':
runsOn = 'macos-latest';
runsOn = 'macos-13';
break;
case 'linux':
runsOn = 'ubuntu-latest';
Expand Down