diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..3bdf62e26 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,53 @@ +# Documentation: +# * https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/enabling-and-disabling-dependabot-version-updates +# * https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "chore(deps):" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore(deps):" + + - package-ecosystem: "npm" + directory: "/ui" + versioning-strategy: increase + schedule: + interval: "daily" + commit-message: + prefix: "chore(deps):" + groups: + akp-js-patch: + update-types: + - "patch" + akp-js-minor: + update-types: + - "minor" + akp-js-major: + update-types: + - "major" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "chore(deps):" + groups: + go-patch: + update-types: + - "patch" + go-minor: + update-types: + - "minor" + go-major: + update-types: + - "major" \ No newline at end of file