DiDeNTABOT不更新Gradle依赖关系

发布于 2025-02-07 02:46:25 字数 1016 浏览 1 评论 0原文

我在应用程序中有一个称为“依赖关系”的Android模块。这就是Gradle文件的样子。

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'
}

这就是我的distrabot.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

上面的所有依赖项看起来都有更高的版本,但依赖性依赖的depentabot只是为tistimplementation创建拉动请求' junit:junit:4.13.1',而不是其他任何依赖性。我在这里设置有什么问题。

I have an Android module called "dependencies" in my app. That's how the Gradle file looks like.

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'
}

and that's how my dependabot.yml looks like

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

All the dependencies above have a higher version available but somehow the dependabot, is only creating the pull request for testImplementation 'junit:junit:4.13.1' and not for any other dependency. What's wrong with my setup here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文