You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🌱 (chore): use octal notation for file and directory modes (kubernetes-sigs#4663)
chore: use octal notation for file and directory modes
Replaced legacy octal literals (e.g., 0644, 0755) with Go 1.13+ `0o` syntax (e.g., 0o644, 0o755)
across the codebase. This modernizes permission mode expressions, aligns with current Go style and
guidelines.
0 commit comments