Compare commits

...

4 Commits
v6.2.2 ... main

Author SHA1 Message Date
larabr
296dd2724a
Dependabot: fix "CI" prefix config 2025-09-11 17:41:21 +02:00
larabr
f3b4bf920a
Merge pull request #1897
Dependabot: setup for dev dependencies and CI actions
2025-09-11 17:39:45 +02:00
larabr
4bc772623e
CI: Dependabot: also update Github actions 2025-09-11 13:19:28 +02:00
larabr
cf7382a7f6
Dependabot: update all dev dependencies on a monthly basis
Patch and minor updates will be grouped in the same MRs.
Major updates will result in standalone MRs.

Also, since only two schedules are currently supported for each package-ecosystem,
the update frequency of noble and fflate has been changed to a daily one
(same as playwright).
2025-09-11 13:17:10 +02:00

View File

@ -10,16 +10,15 @@ updates:
interval: "daily" interval: "daily"
allow: allow:
- dependency-name: "playwright" - dependency-name: "playwright"
versioning-strategy: increase
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
allow:
- dependency-name: "@noble*" - dependency-name: "@noble*"
- dependency-name: "fflate" - dependency-name: "fflate"
versioning-strategy: increase versioning-strategy: increase
cooldown: # consider updates only X days after release
semver-major-days: 7
semver-minor-days: 1
semver-patch-days: 1
include:
- "*"
groups: groups:
# Any packages matching the pattern @noble* where the highest resolvable # Any packages matching the pattern @noble* where the highest resolvable
# version is minor or patch will be grouped together. # version is minor or patch will be grouped together.
@ -31,3 +30,34 @@ updates:
update-types: update-types:
- "minor" - "minor"
- "patch" - "patch"
# update other dependencies separately on a monthly basis
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
ignore: # targeted by other schedule above
- dependency-name: "playwright"
- dependency-name: "@noble*"
- dependency-name: "fflate"
versioning-strategy: increase
cooldown: # consider updates only X days after release
semver-major-days: 30
semver-minor-days: 3
semver-patch-days: 3
include:
- "*"
groups:
dev-dependencies:
applies-to: version-updates
patterns:
- "*"
update-types: # major updates will trigger non-grouped MRs
- "minor"
- "patch"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "CI"