|
| 1 | +# Dependabot version updates. |
| 2 | +# |
| 3 | +# Key reference: |
| 4 | +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference |
| 5 | +# |
| 6 | +# Notes specific to this repository: |
| 7 | +# |
| 8 | +# * bcprov and the other published jars have no runtime dependencies. Everything |
| 9 | +# Dependabot can see here is test-only, compileOnly, example (misc), or build |
| 10 | +# tooling, so these updates are housekeeping rather than security work - hence |
| 11 | +# the weekly cadence and the grouping into a single pull request per ecosystem. |
| 12 | +# * The external dependencies live in the sub-project build files (prov, pkix, pg, |
| 13 | +# mail, jmail, misc, mls, pgsc, ...), not just the root one, so "directories" |
| 14 | +# with a glob is used - the singular "directory" key does not support globbing. |
| 15 | +# * Major-version bumps are ignored deliberately. The Gradle modules compile with |
| 16 | +# --release 8 (and src/main additionally has to stay inside the Java 4 source |
| 17 | +# floor for the legacy Ant distributions), so a new major of the bnd builder, |
| 18 | +# Error Prone, or a mail API is a judgement call about supported Java versions |
| 19 | +# rather than something to merge on green CI. Raise those by hand. |
| 20 | +# * The jars pulled in with files()/fileTree() from test/libs and libs (mls, prov) |
| 21 | +# are invisible to Dependabot; they still have to be refreshed manually. |
| 22 | + |
| 23 | +version: 2 |
| 24 | +updates: |
| 25 | + - package-ecosystem: "gradle" |
| 26 | + directories: |
| 27 | + - "/" |
| 28 | + - "/*" |
| 29 | + schedule: |
| 30 | + interval: "weekly" |
| 31 | + open-pull-requests-limit: 3 |
| 32 | + groups: |
| 33 | + gradle-dependencies: |
| 34 | + applies-to: version-updates |
| 35 | + patterns: |
| 36 | + - "*" |
| 37 | + ignore: |
| 38 | + # See the note above on --release 8 / the Java 4 source floor. |
| 39 | + - dependency-name: "*" |
| 40 | + update-types: ["version-update:semver-major"] |
| 41 | + |
| 42 | + - package-ecosystem: "github-actions" |
| 43 | + directory: "/" |
| 44 | + schedule: |
| 45 | + interval: "weekly" |
| 46 | + groups: |
| 47 | + github-actions: |
| 48 | + applies-to: version-updates |
| 49 | + patterns: |
| 50 | + - "*" |
0 commit comments