This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new fa5297f51e [MINOR] fix(CI): Increase the dependabot check interval
(#9339)
fa5297f51e is described below
commit fa5297f51e4722d2a7a13cf824f60c33d113bdf6
Author: Jerry Shao <[email protected]>
AuthorDate: Tue Dec 2 11:51:46 2025 +0800
[MINOR] fix(CI): Increase the dependabot check interval (#9339)
### What changes were proposed in this pull request?
Increase the dependabot check interval from weekly to monthly.
### Why are the changes needed?
Frequently checking the dependencies and submitting a bunch of PR is
quite annoying.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
N/A
---
.github/dependabot.yml | 23 ++++++++++------------
.../gravitino/dto/job/spark_job_template_dto.py | 4 +++-
2 files changed, 13 insertions(+), 14 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index dd5bcab49d..b3fcae1dd0 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -4,30 +4,27 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
- interval: "weekly"
-
+ interval: "monthly"
+
# Java (Gradle) : Single root entry is enough because settings.gradle.kts
includes all submodules
- package-ecosystem: "gradle"
directory: "/"
schedule:
- interval: "weekly"
-
- # NPM
+ interval: "monthly"
+
+ # NPM
- package-ecosystem: "npm"
directory: "/web/web"
schedule:
- interval: "weekly"
-
+ interval: "monthly"
+
# PYTHON
- package-ecosystem: "pip"
directory: "/mcp-server"
schedule:
- interval: "weekly"
-
+ interval: "monthly"
+
- package-ecosystem: "pip"
directory: "/clients/client-python"
schedule:
- interval: "weekly"
-
-
-
+ interval: "monthly"
diff --git a/clients/client-python/gravitino/dto/job/spark_job_template_dto.py
b/clients/client-python/gravitino/dto/job/spark_job_template_dto.py
index f72b51619a..9c8e06e73c 100644
--- a/clients/client-python/gravitino/dto/job/spark_job_template_dto.py
+++ b/clients/client-python/gravitino/dto/job/spark_job_template_dto.py
@@ -34,7 +34,9 @@ class SparkJobTemplateDTO(JobTemplateDTO):
optional for PySpark applications. For PySpark jobs, this field can be
None.
"""
- _class_name: Optional[str] = field(default=None,
metadata=config(field_name="className"))
+ _class_name: Optional[str] = field(
+ default=None, metadata=config(field_name="className")
+ )
_jars: Optional[List[str]] = field(default=None,
metadata=config(field_name="jars"))
_files: Optional[List[str]] = field(
default=None, metadata=config(field_name="files")