diff --git a/.github/ci/crlf.sh b/.github/ci/crlf.sh
index ede17c861..69838ce88 100755
--- a/.github/ci/crlf.sh
+++ b/.github/ci/crlf.sh
@@ -4,7 +4,7 @@
 
 set -euo pipefail
 
-FILES_WITH_CRLF=$(find  ! -path "./.git/*" -not -type d | xargs -0 file -N | (grep " CRLF " || true))
+FILES_WITH_CRLF=$(find  ! -path "./.git/*" -not -type d | xargs file -N | (grep " CRLF " || true))
 
 if [ -z "$FILES_WITH_CRLF" ]; then
   echo -e "No files with CRLF endings found."
diff --git a/.github/ci/rustfmt.sh b/.github/ci/rustfmt.sh
index 0080f0db8..369239cfe 100755
--- a/.github/ci/rustfmt.sh
+++ b/.github/ci/rustfmt.sh
@@ -9,4 +9,4 @@ export CARGO_HOME=/ci/cache/cargo
 export CARGO_TARGET_DIR=/ci/cache/target
 mv rust-toolchain-nightly.toml rust-toolchain.toml
 
-find . -name '*.rs' -not -path '*target*' | xargs -0 rustfmt --check  --skip-children --unstable-features --edition 2021
+find . -name '*.rs' -not -path '*target*' | xargs rustfmt --check  --skip-children --unstable-features --edition 2021