Skip to content

Commit b0fbeaf

Browse files
sirosengithub-actions[bot]
authored andcommitted
[vendor-schemas] automated update
1 parent 4ff22b6 commit b0fbeaf

File tree

5 files changed

+47
-18
lines changed

5 files changed

+47
-18
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13-
- Update vendored schemas (2024-04-14)
13+
- Update vendored schemas (2024-04-21)
1414

1515
0.28.2
1616
------

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
},
143143
{
144144
"type": "array",
145-
"minLength": 1,
145+
"minItems": 1,
146146
"items": {
147147
"type": "string"
148148
}
@@ -958,7 +958,7 @@
958958
},
959959
{
960960
"type": "array",
961-
"minLength": 1,
961+
"minItems": 1,
962962
"items": {
963963
"type": "string"
964964
}
@@ -1010,7 +1010,7 @@
10101010
},
10111011
{
10121012
"type": "array",
1013-
"minLength": 1,
1013+
"minItems": 1,
10141014
"items": {
10151015
"type": "string"
10161016
}
@@ -1090,8 +1090,7 @@
10901090
"additionalProperties": false
10911091
}
10921092
]
1093-
},
1094-
"additionalProperties": false
1093+
}
10951094
}
10961095
},
10971096
"jobVariables": {
@@ -1121,8 +1120,7 @@
11211120
"additionalProperties": false
11221121
}
11231122
]
1124-
},
1125-
"additionalProperties": false
1123+
}
11261124
}
11271125
},
11281126
"rulesVariables": {
@@ -1135,8 +1133,7 @@
11351133
"number",
11361134
"string"
11371135
]
1138-
},
1139-
"additionalProperties": false
1136+
}
11401137
}
11411138
},
11421139
"if": {
@@ -1754,7 +1751,7 @@
17541751
},
17551752
{
17561753
"type": "array",
1757-
"minLength": 1,
1754+
"minItems": 1,
17581755
"items": {
17591756
"type": "string"
17601757
}
@@ -2343,7 +2340,7 @@
23432340
},
23442341
"tags": {
23452342
"type": "array",
2346-
"minLength": 1,
2343+
"minItems": 1,
23472344
"markdownDescription": "Used to select runners from the list of available runners. A runner must have all tags listed here to run the job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#tags).",
23482345
"items": {
23492346
"anyOf": [
@@ -2353,7 +2350,7 @@
23532350
},
23542351
{
23552352
"type": "array",
2356-
"minLength": 1,
2353+
"minItems": 1,
23572354
"items": {
23582355
"type": "string"
23592356
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fd6be5cd001bd79e0a0a0a10111b84d41e854ec18fb285cf2414b4c85bac533c
1+
27b78ab0e321dfa26707da6159bf21d0cb18f51fba9b5645ae68449e06ee24e4

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -809,8 +809,7 @@
809809
"default": {},
810810
"additionalProperties": {
811811
"type": "string"
812-
},
813-
"$ref": "#"
812+
}
814813
},
815814
"defaultRegistryUrls": {
816815
"description": "List of registry URLs to use as the default for a datasource.",
@@ -934,7 +933,7 @@
934933
"dockerSidecarImage": {
935934
"description": "Change this value to override the default Renovate sidecar image.",
936935
"type": "string",
937-
"default": "ghcr.io/containerbase/sidecar:10.3.13"
936+
"default": "ghcr.io/containerbase/sidecar:10.3.15"
938937
},
939938
"dockerUser": {
940939
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1566,6 +1565,11 @@
15661565
},
15671566
"$ref": "#"
15681567
},
1568+
"httpCacheTtlDays": {
1569+
"description": "Maximum duration in days to keep HTTP cache entries.",
1570+
"type": "integer",
1571+
"default": 90
1572+
},
15691573
"ignoreDeprecated": {
15701574
"description": "Avoid upgrading from a non-deprecated version to a deprecated one.",
15711575
"type": "boolean",
@@ -2130,6 +2134,20 @@
21302134
}
21312135
]
21322136
},
2137+
"excludeDepPrefixes": {
2138+
"description": "Dep names prefixes to exclude. Valid only within a `packageRules` object.",
2139+
"oneOf": [
2140+
{
2141+
"type": "array",
2142+
"items": {
2143+
"type": "string"
2144+
}
2145+
},
2146+
{
2147+
"type": "string"
2148+
}
2149+
]
2150+
},
21332151
"excludePackageNames": {
21342152
"description": "Package names to exclude. Valid only within a `packageRules` object.",
21352153
"oneOf": [
@@ -2298,6 +2316,20 @@
22982316
}
22992317
]
23002318
},
2319+
"matchDepPrefixes": {
2320+
"description": "Dep names prefixes to match. Valid only within a `packageRules` object.",
2321+
"oneOf": [
2322+
{
2323+
"type": "array",
2324+
"items": {
2325+
"type": "string"
2326+
}
2327+
},
2328+
{
2329+
"type": "string"
2330+
}
2331+
]
2332+
},
23012333
"matchDepTypes": {
23022334
"description": "List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object.",
23032335
"oneOf": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ffad7a78901c229bcd47b8fe862e4d01eea794b2404276eb405f7504372a3839
1+
430c7e757227298efd634057562051358fbba62db23aa14ba7bad3f7c89e3ec6

0 commit comments

Comments
 (0)