diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0e9ae42..b9077c1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,12 +4,30 @@ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 +registries: + spring-boot-common-github-packages: + type: maven-repository + url: https://maven.pkg.github.com/ministryofjustice/laa-ccms-spring-boot-common + username: PhilDigitalJustice + password: ${{ secrets.REPO_TOKEN }} updates: - package-ecosystem: "gradle" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly" + registries: "*" groups: gradle-updates: patterns: - - "**" # Matches all Gradle dependencies + - "!uk.gov.laa.ccms.*" # All external Gradle dependencies + internal-packages: + patterns: + - "uk.gov.laa.ccms.*" # All internal Gradle dependencies + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + github-actions: + patterns: + - "**" diff --git a/build.gradle b/build.gradle index 43403ce..81e7598 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'net.researchgate.release' version '3.0.2' - id 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' version '0.0.17' apply false + id 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' version '0.0.24' apply false } subprojects {