From aefb4e19b4b02d63bfda80d63a4828bf6262df18 Mon Sep 17 00:00:00 2001 From: phranck Date: Fri, 30 Jan 2026 15:56:15 +0100 Subject: [PATCH] fix: Add --disable-sandbox to DocC workflow for SwiftLint plugin compatibility The SwiftLint build plugin downloads a binary artifact that cannot execute inside the default sandbox on GitHub Actions macOS runners. Adding --disable-sandbox allows the prebuild plugin to run. --- .github/workflows/docc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docc.yml b/.github/workflows/docc.yml index 864baacf..14d5885e 100644 --- a/.github/workflows/docc.yml +++ b/.github/workflows/docc.yml @@ -23,7 +23,7 @@ jobs: - name: Build DocC documentation run: | - swift package --allow-writing-to-directory docs-output \ + swift package --disable-sandbox --allow-writing-to-directory docs-output \ generate-documentation \ --target TUIKit \ --output-path docs-output \