Dependabot 未更新 gradle 依赖项

Dependabot not updating the gradle dependencies

提问人:MXC 提问时间:6/14/2022 最后编辑:MXC 更新时间:6/20/2022 访问量:574

问:

我的应用程序中有一个名为“dependencies”的 Android 模块。这就是 Gradle 文件的样子。

enter image description here

dependencies {
    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.6.0'
    implementation 'com.google.android.exoplayer:exoplayer:2.17.0'
    testImplementation 'junit:junit:4.13.1'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
}

这就是我的样子dependabot.yml

version: 2
updates:
# Updates for Gradle dependencies used in the app      
    - package-ecosystem: gradle
      directory: "/dependencies/"
      schedule:
        interval: "daily"
      open-pull-requests-limit: 10

上面的所有依赖项都有更高的版本可用,但不知何故,dependabot 只为任何其他依赖项创建拉取请求,而不是为任何其他依赖项创建拉取请求。我的设置有什么问题。testImplementation 'junit:junit:4.13.1'

android build.gradle 依赖机器人 dependabot-script

评论


答: 暂无答案