From cd74c4a0190295f56c202191651f360480095b51 Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Tue, 19 Nov 2024 06:42:47 -0800 Subject: [PATCH] Update PIR test runner (#3570) Task/Issue URL: https://app.asana.com/0/1199230911884351/1208793631611370/f Tech Design URL: CC: Description: This PR updates the runner image used by the PIR tests. The PIR tests are currently using Xcode 14, which will no longer work due to GRDB being built with a newer SDK. --- .github/workflows/pir_end_to_end_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pir_end_to_end_tests.yml b/.github/workflows/pir_end_to_end_tests.yml index b22d9f9136..124eec0eff 100644 --- a/.github/workflows/pir_end_to_end_tests.yml +++ b/.github/workflows/pir_end_to_end_tests.yml @@ -13,10 +13,10 @@ jobs: strategy: fail-fast: false matrix: - runner: [macos-14-xlarge] + runner: [macos-15-xlarge] include: - - xcode-version: "15.4" - runner: macos-14-xlarge + - xcode-version: "16.1" + runner: macos-15-xlarge if: | startsWith(github.event.pull_request.base.ref, 'release/') ||