From 874e2149931f40c41c470c2a6ca6c6719fab4c4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Cas=C3=ADa?= <31012661+rcasia@users.noreply.github.com> Date: Sat, 29 Mar 2025 13:30:30 +0100 Subject: [PATCH] fix: remove exec permission from .gitattributes #33140 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: .gitattributes was marked as executable, which isn’t needed for a config file and goes against the principle of least privilege. Solution: Set file mode to 100644 to reflect its intended use. --- .gitattributes | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes old mode 100755 new mode 100644