Skip to content

Commit 57c7b6a

Browse files
committed
Disable SIP disablement check
1 parent 239e305 commit 57c7b6a

File tree

9 files changed

+0
-257
lines changed

9 files changed

+0
-257
lines changed

lib/analyze-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/autobuild-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action-post.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/resolve-environment-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/setup-codeql-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/start-proxy-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-sarif-action.js

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/util.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,15 +1099,6 @@ export async function checkDiskUsage(
10991099
logger: Logger,
11001100
): Promise<DiskUsage | undefined> {
11011101
try {
1102-
// We avoid running the `df` binary under the hood for macOS ARM runners with SIP disabled.
1103-
if (
1104-
process.platform === "darwin" &&
1105-
(process.arch === "arm" || process.arch === "arm64") &&
1106-
!(await checkSipEnablement(logger))
1107-
) {
1108-
return undefined;
1109-
}
1110-
11111102
const diskUsage = await fsPromises.statfs(
11121103
getRequiredEnvParam("GITHUB_WORKSPACE"),
11131104
);

0 commit comments

Comments
 (0)