From 41c3e4a2c3904488fb57174afd0417999b20fe80 Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Fri, 25 Jul 2025 11:38:55 -0700 Subject: [PATCH] Update xcode developer dir to new regularly updated symlink (#234) The Xcode installation on the runners is regularly updated to the latest release. A symlink at /Applications/Xcode-latest.app points to the most recent installation. We should not rely on a specific version path. Signed-off-by: Kathryn Baldauf --- .github/workflows/containerization-build-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/containerization-build-template.yml b/.github/workflows/containerization-build-template.yml index b57f85d8..1c64539b 100644 --- a/.github/workflows/containerization-build-template.yml +++ b/.github/workflows/containerization-build-template.yml @@ -22,7 +22,7 @@ jobs: contents: read packages: write env: - DEVELOPER_DIR: "/Applications/Xcode_26.b1.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode-latest.app/Contents/Developer" steps: - name: Checkout repository