From eba46368d8d132ae41d6f03e3e32ba333cd766d4 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Thu, 25 Apr 2024 12:02:30 +0200 Subject: [PATCH] ci: switch to macos-13 (#12326) --- .github/workflows/canary.yml | 4 ++-- .github/workflows/ci.yml | 26 +++++++++++++------------- .github/workflows/deflake.yml | 2 +- tools/analyze_issue.mjs | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index ac458218ffe..c7666c453aa 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -24,7 +24,7 @@ jobs: os: - ubuntu-latest - windows-latest - - macos-latest + - macos-13 shard: - 1-2 - 2-2 @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 552931f1f3c..db02f63f183 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,7 +159,7 @@ jobs: os: - ubuntu-latest - windows-latest - - macos-latest + - macos-13 shard: - 1-2 - 2-2 @@ -167,13 +167,13 @@ jobs: - 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 @@ -252,7 +252,7 @@ jobs: - firefox-headless os: - ubuntu-latest - - macos-latest + - macos-13 - windows-latest shard: - 1-4 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/deflake.yml b/.github/workflows/deflake.yml index 3bc6a5bf15a..34fa304f629 100644 --- a/.github/workflows/deflake.yml +++ b/.github/workflows/deflake.yml @@ -33,7 +33,7 @@ on: options: - ubuntu-latest - windows-latest - - macos-latest + - macos-13 retries: description: Number of retries per test required: false diff --git a/tools/analyze_issue.mjs b/tools/analyze_issue.mjs index 359ce93b873..26d041bf073 100755 --- a/tools/analyze_issue.mjs +++ b/tools/analyze_issue.mjs @@ -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';