Skip to content

Commit 7c8f11a

Browse files
committed
Update Dockerfile to use specific image digest for node:22-alpine
1 parent 1193765 commit 7c8f11a

1 file changed

Lines changed: 58 additions & 4 deletions

File tree

renovate.json

Lines changed: 58 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,65 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": ["config:recommended"],
2+
"extends": [
3+
":automergeDisabled",
4+
":dependencyDashboard",
5+
":disableRateLimiting",
6+
":enableVulnerabilityAlertsWithLabel(security)",
7+
":ignoreModulesAndTests",
8+
":ignoreUnstable",
9+
":label(dependencies)",
10+
":maintainLockFilesMonthly",
11+
":semanticPrefixFixDepsChoreOthers",
12+
":separateMajorReleases",
13+
":timezone(Europe/Dublin)",
14+
"schedule:weekends",
15+
"workarounds:all",
16+
"helpers:pinGitHubActionDigests",
17+
":semanticCommits"
18+
],
419
"packageRules": [
520
{
6-
"matchUpdateTypes": ["minor", "patch"],
21+
"description": "Add `docker` label for Dockerfile or docker-compose related updates.",
22+
"matchManagers": [
23+
"docker-compose",
24+
"dockerfile"
25+
],
26+
"addLabels": [
27+
"docker"
28+
]
29+
},
30+
{
31+
"description": "Group all minor and patch updates together for gradle.",
32+
"matchManagers": [
33+
"gradle"
34+
],
35+
"matchUpdateTypes": [
36+
"minor",
37+
"patch"
38+
],
39+
"groupName": "all non-major dependencies",
40+
"groupSlug": "all-minor-patch"
41+
},
42+
{
43+
"description": "Group all minor and patch updates together for docker.",
44+
"matchManagers": [
45+
"docker-compose",
46+
"dockerfile"
47+
],
48+
"matchUpdateTypes": [
49+
"minor",
50+
"patch"
51+
],
52+
"groupName": "all non-major dependencies",
53+
"groupSlug": "all-minor-patch"
54+
},
55+
{
56+
"matchUpdateTypes": [
57+
"minor",
58+
"patch"
59+
],
760
"matchCurrentVersion": "!/^0/",
861
"automerge": true
962
}
10-
]
63+
],
64+
"rebaseWhen": "conflicted"
1165
}

0 commit comments

Comments
 (0)