From 0e422ac405d2c91bfc9004fad0bdc22abd43f312 Mon Sep 17 00:00:00 2001 From: Marcin Iwanicki Date: Sat, 7 Mar 2026 23:22:52 +0000 Subject: [PATCH 1/3] Update github actions to use Xcode_26.3.app --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21bbf2a..8e08d21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: - main env: - DEVELOPER_DIR: "/Applications/Xcode_26.0.1.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_26.3.app/Contents/Developer" GITHUB_API_TOKEN: ${{ github.token }} permissions: From 163c288a6ff6a52bb72ae58eb1d44345dcb8384e Mon Sep 17 00:00:00 2001 From: Marcin Iwanicki Date: Sat, 7 Mar 2026 23:29:16 +0000 Subject: [PATCH 2/3] Remove quarantine attribute after mise downloads it --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8e08d21..c06f8dd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,8 @@ jobs: - uses: actions/checkout@v4 - name: Run setup run: make setup + - name: Remove quarantine from mise tools + run: find "$HOME/.local/share/mise" -type f -perm +111 -exec xattr -d com.apple.quarantine {} + 2>/dev/null || true - name: Run lint run: make lint From f47c37036d078ce6508273b0c83787a17a2c2754 Mon Sep 17 00:00:00 2001 From: Marcin Iwanicki Date: Sat, 7 Mar 2026 23:42:43 +0000 Subject: [PATCH 3/3] Remove redundant CI step --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c06f8dd..8e08d21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,8 +22,6 @@ jobs: - uses: actions/checkout@v4 - name: Run setup run: make setup - - name: Remove quarantine from mise tools - run: find "$HOME/.local/share/mise" -type f -perm +111 -exec xattr -d com.apple.quarantine {} + 2>/dev/null || true - name: Run lint run: make lint