[6.3.1] Disable lockfiles by default (#19106)

We're seeing too many lockfile issues in 6.3.0. Let's disable this in 6.3.1 so that we have time to properly fix them, and re-enable it in 6.4.0.
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java b/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
index d11631b..1285c1a 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
@@ -278,7 +278,7 @@
   @Option(
       name = "lockfile_mode",
       converter = LockfileMode.Converter.class,
-      defaultValue = "update",
+      defaultValue = "off",
       documentationCategory = OptionDocumentationCategory.BZLMOD,
       effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
       help =