This is an automated email from the ASF dual-hosted git repository.
zhouyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gluten.git
The following commit(s) were added to refs/heads/main by this push:
new d707d66a2d [CI]Enable updates from depedency bot (#12508)
d707d66a2d is described below
commit d707d66a2d52369b2603e6299f76d0dec99833c9
Author: Yuan <[email protected]>
AuthorDate: Wed Jul 15 15:12:30 2026 +0800
[CI]Enable updates from depedency bot (#12508)
This patch enabled the auto update from github dependency bot.
Github bot will try to make a PR to fix the security issues:
https://github.com/apache/gluten/security/dependabot
This can help to fix all CVE issues in Gluten quickly. Committers will need
to decide to reject the patch if it's not working for Gluten in some cases. If
the update PR is closed, the bot will not raise the PR on the same issue again.
Signed-off-by: Yuan <[email protected]>
---
.github/dependabot.yml | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..59249c92bf
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,29 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+version: 2
+updates:
+ # Automatically submit updates for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+
+ # Automatically submit updates for Maven (Java/Scala components)
+ - package-ecosystem: "maven"
+ directory: "/" # Adjust if the pom.xml is in a subdirectory
+ schedule:
+ interval: "weekly"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]