Skip to content

Commit 95dc7fc

Browse files
sirosengithub-actions[bot]
authored andcommitted
[vendor-schemas] automated update
1 parent cfc7688 commit 95dc7fc

File tree

7 files changed

+126
-92
lines changed

7 files changed

+126
-92
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13+
- Update vendored schemas (2024-05-26)
14+
1315
0.28.4
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 46 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -764,55 +764,57 @@
764764
"groups": {
765765
"description": "Configure groups for dependencies. Each 'groups' property is arbitrary will appear in pull request titles and branch names. For example, the code snippet '{\"groups\": {\"NPM dependencies\": {\"patterns\": [\"*\"]}}}' sets the group name to 'NPM dependencies'.",
766766
"type": "object",
767-
"patternProperties": {
768-
"^.+$": {
769-
"type": "object",
770-
"properties": {
771-
"dependency-type": {
772-
"description": "Specify a dependency type to be included in the group.",
767+
"additionalProperties": {
768+
"type": "object",
769+
"properties": {
770+
"applies-to": {
771+
"description": "Use to specify a whether the rules in the group apply to version updates or security updates.",
772+
"type": "string",
773+
"enum": ["version-updates", "security-updates"]
774+
},
775+
"dependency-type": {
776+
"description": "Specify a dependency type to be included in the group.",
777+
"type": "string",
778+
"enum": ["development", "production"]
779+
},
780+
"patterns": {
781+
"description": "Define strings of characters that match with a dependency name (or multiple dependency names) to include those dependencies in the group.",
782+
"type": "array",
783+
"items": {
773784
"type": "string",
774-
"enum": ["development", "production"]
785+
"minLength": 1
775786
},
776-
"patterns": {
777-
"description": "Define strings of characters that match with a dependency name (or multiple dependency names) to include those dependencies in the group.",
778-
"type": "array",
779-
"items": {
780-
"type": "string",
781-
"minLength": 1
782-
},
783-
"uniqueItems": true,
784-
"minItems": 1
785-
},
786-
"exclude-patterns": {
787-
"description": "Exclude certain dependencies from the group. If a dependency is excluded from a group, Dependabot will continue to raise single pull requests to update the dependency to its latest version.",
788-
"type": "array",
789-
"items": {
790-
"type": "string",
791-
"minLength": 1
792-
},
793-
"uniqueItems": true,
794-
"minItems": 1
787+
"uniqueItems": true,
788+
"minItems": 1
789+
},
790+
"exclude-patterns": {
791+
"description": "Exclude certain dependencies from the group. If a dependency is excluded from a group, Dependabot will continue to raise single pull requests to update the dependency to its latest version.",
792+
"type": "array",
793+
"items": {
794+
"type": "string",
795+
"minLength": 1
795796
},
796-
"update-types": {
797-
"description": "Specify the semantic versioning level to include in the group",
798-
"type": "array",
799-
"items": {
800-
"type": "string",
801-
"enum": ["major", "minor", "patch"]
802-
},
803-
"minItems": 1,
804-
"uniqueItems": true
805-
}
797+
"uniqueItems": true,
798+
"minItems": 1
806799
},
807-
"anyOf": [
808-
{ "required": ["dependency-type"] },
809-
{ "required": ["patterns"] },
810-
{ "required": ["update-types"] }
811-
],
812-
"additionalProperties": false
813-
}
800+
"update-types": {
801+
"description": "Specify the semantic versioning level to include in the group",
802+
"type": "array",
803+
"items": {
804+
"type": "string",
805+
"enum": ["major", "minor", "patch"]
806+
},
807+
"minItems": 1,
808+
"uniqueItems": true
809+
}
810+
},
811+
"anyOf": [
812+
{ "required": ["dependency-type"] },
813+
{ "required": ["patterns"] },
814+
{ "required": ["update-types"] }
815+
],
816+
"additionalProperties": false
814817
},
815-
"additionalProperties": false,
816818
"minProperties": 1
817819
},
818820
"ignore": {

src/check_jsonschema/builtin_schemas/vendor/github-workflows.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -427,47 +427,47 @@
427427
"description": "A build matrix is a set of different configurations of the virtual environment. For example you might run a job against more than one supported version of a language, operating system, or tool. Each configuration is a copy of the job that runs and reports a status.\nYou can specify a matrix by supplying an array for the configuration options. For example, if the GitHub virtual environment supports Node.js versions 6, 8, and 10 you could specify an array of those versions in the matrix.\nWhen you define a matrix of operating systems, you must set the required runs-on keyword to the operating system of the current job, rather than hard-coding the operating system name. To access the operating system name, you can use the matrix.os context parameter to set runs-on. For more information, see https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions.",
428428
"oneOf": [
429429
{
430-
"type": "object"
430+
"type": "object",
431+
"patternProperties": {
432+
"^(in|ex)clude$": {
433+
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build",
434+
"oneOf": [
435+
{
436+
"$ref": "#/definitions/expressionSyntax"
437+
},
438+
{
439+
"type": "array",
440+
"items": {
441+
"type": "object",
442+
"additionalProperties": {
443+
"$ref": "#/definitions/configuration"
444+
}
445+
},
446+
"minItems": 1
447+
}
448+
]
449+
}
450+
},
451+
"additionalProperties": {
452+
"oneOf": [
453+
{
454+
"type": "array",
455+
"items": {
456+
"$ref": "#/definitions/configuration"
457+
},
458+
"minItems": 1
459+
},
460+
{
461+
"$ref": "#/definitions/expressionSyntax"
462+
}
463+
]
464+
},
465+
"minProperties": 1
431466
},
432467
{
433468
"$ref": "#/definitions/expressionSyntax"
434469
}
435-
],
436-
"patternProperties": {
437-
"^(in|ex)clude$": {
438-
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build",
439-
"oneOf": [
440-
{
441-
"$ref": "#/definitions/expressionSyntax"
442-
},
443-
{
444-
"type": "array",
445-
"items": {
446-
"type": "object",
447-
"additionalProperties": {
448-
"$ref": "#/definitions/configuration"
449-
}
450-
},
451-
"minItems": 1
452-
}
453-
]
454-
}
455-
},
456-
"additionalProperties": {
457-
"oneOf": [
458-
{
459-
"type": "array",
460-
"items": {
461-
"$ref": "#/definitions/configuration"
462-
},
463-
"minItems": 1
464-
},
465-
{
466-
"$ref": "#/definitions/expressionSyntax"
467-
}
468-
]
469-
},
470-
"minProperties": 1
470+
]
471471
},
472472
"reusableWorkflowCallJob": {
473473
"$comment": "https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#calling-a-reusable-workflow",

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 38 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@
965965
"dockerSidecarImage": {
966966
"description": "Change this value to override the default Renovate sidecar image.",
967967
"type": "string",
968-
"default": "ghcr.io/containerbase/sidecar:10.6.11"
968+
"default": "ghcr.io/containerbase/sidecar:10.6.15"
969969
},
970970
"dockerUser": {
971971
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1905,6 +1905,36 @@
19051905
},
19061906
"$ref": "#"
19071907
},
1908+
"mergeConfidenceDatasources": {
1909+
"description": "If set, Renovate will query the merge-confidence JSON API only for datasources that are part of this list.",
1910+
"type": "array",
1911+
"items": {
1912+
"type": "string",
1913+
"enum": [
1914+
"go",
1915+
"maven",
1916+
"npm",
1917+
"nuget",
1918+
"packagist",
1919+
"pypi",
1920+
"rubygems"
1921+
]
1922+
},
1923+
"default": [
1924+
"go",
1925+
"maven",
1926+
"npm",
1927+
"nuget",
1928+
"packagist",
1929+
"pypi",
1930+
"rubygems"
1931+
]
1932+
},
1933+
"mergeConfidenceEndpoint": {
1934+
"description": "If set, Renovate will query this API for Merge Confidence data.",
1935+
"type": "string",
1936+
"default": "https://developer.mend.io/"
1937+
},
19081938
"meteor": {
19091939
"description": "Configuration object for the meteor manager",
19101940
"type": "object",
@@ -2312,7 +2342,7 @@
23122342
"type": "string"
23132343
},
23142344
"matchCurrentValue": {
2315-
"description": "A regex to match against the raw `currentValue` string of a dependency. Valid only within a `packageRules` object.",
2345+
"description": "A regex or glob pattern to match against the raw `currentValue` string of a dependency. Valid only within a `packageRules` object.",
23162346
"type": "string"
23172347
},
23182348
"matchCurrentVersion": {
@@ -2413,7 +2443,7 @@
24132443
]
24142444
},
24152445
"matchNewValue": {
2416-
"description": "A regex to match against the raw `newValue` string of a dependency. Valid only within a `packageRules` object.",
2446+
"description": "A regex or glob pattern to match against the raw `newValue` string of a dependency. Valid only within a `packageRules` object.",
24172447
"type": "string"
24182448
},
24192449
"matchPackageNames": {
@@ -2540,6 +2570,11 @@
25402570
}
25412571
]
25422572
},
2573+
"prPriority": {
2574+
"description": "Set sorting priority for PR creation. PRs with higher priority are created first, negative priority last.",
2575+
"type": "integer",
2576+
"default": 0
2577+
},
25432578
"replacementName": {
25442579
"description": "The name of the new dependency that replaces the old deprecated dependency.",
25452580
"type": "string"
@@ -2871,11 +2906,6 @@
28712906
"type": "integer",
28722907
"default": 25
28732908
},
2874-
"prPriority": {
2875-
"description": "Set sorting priority for PR creation. PRs with higher priority are created first, negative priority last.",
2876-
"type": "integer",
2877-
"default": 0
2878-
},
28792909
"prTitle": {
28802910
"description": "Pull Request title template. Inherits from `commitMessage` if null.",
28812911
"type": "string",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f68c06703b5e0fa54ea5800d198dae1bcb1df99d26f9067d64f5df836402e12a
1+
f0cc3134ba2ed762c69b443b99dd0becbb1cb38cf8d3b8e24a698e8e402dbade
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
94475510f33ed1503fa6f6899900927fa5693b4f9cf759209a0dc76a267af9a3
1+
a0f68510704ee2f80583e797de6adbf6061c949226eeee584a74d381464f1531
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10aa04c61243926bcf00f3d1523dc7edd1a247f26e2790d155cb086bc46bd0f8
1+
c12031e99497479db221a8728cf4d9a6a1b7d7af46ac737cd240c11537c16b91

0 commit comments

Comments
 (0)