Skip to content

Commit

Permalink
group by update-level
Browse files Browse the repository at this point in the history
  • Loading branch information
unglaublicherdude committed Apr 3, 2023
1 parent 56ac24c commit f43fb46
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
version: '3.8'
services:
ScanServer:
image: ghcr.io/gdatasoftwareag/scanserver:latest
image: artifactory.gdata.de:6555/development/vaas/gdatasoftwareag/scanserver:1.5.2
restart: always
stop_grace_period: 120s
volumes:
- samples:/tmp/scan
- scanSocket:/var/share/run

ScanClient:
image: ghcr.io/gdatasoftwareag/scanclient:latest
image: artifactory.gdata.de:6555/development/vaas/gdatasoftwareag/scanclient:1.5.2
restart: always
stop_grace_period: 120s
ports:
- 8080:8080
volumes:
Expand Down
25 changes: 24 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "all major dependencies",
"groupSlug": "all-major",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"major"
]
}
]
}

0 comments on commit f43fb46

Please sign in to comment.