Skip to content

Commit 27a0e99

Browse files
authored
Merge pull request #438 from python-jsonschema/vendor-schemas-auto
Update vendored schemas
2 parents f1969b2 + 2a91d30 commit 27a0e99

File tree

9 files changed

+34
-13
lines changed

9 files changed

+34
-13
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-05-26)
13+
- Update vendored schemas (2024-06-02)
1414

1515
0.28.4
1616
------

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

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,27 @@
129129
"env": {
130130
"$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsstepsenv",
131131
"description": "Sets a map of environment variables for only that step.",
132-
"type": "object",
133-
"additionalProperties": {
134-
"type": "string"
135-
}
132+
"oneOf": [
133+
{
134+
"type": "object",
135+
"additionalProperties": {
136+
"oneOf": [
137+
{
138+
"type": "string"
139+
},
140+
{
141+
"type": "number"
142+
},
143+
{
144+
"type": "boolean"
145+
}
146+
]
147+
}
148+
},
149+
{
150+
"$ref": "#/definitions/stringContainingExpressionSyntax"
151+
}
152+
]
136153
},
137154
"continue-on-error": {
138155
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@
634634
]
635635
},
636636
"outputs": {
637-
"$comment": "https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjobs_idoutputs",
637+
"$comment": "https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs",
638638
"description": "A map of outputs for a job. Job outputs are available to all downstream jobs that depend on this job.",
639639
"type": "object",
640640
"additionalProperties": {

src/check_jsonschema/builtin_schemas/vendor/readthedocs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
"properties": {
233233
"install": {
234234
"title": "Install",
235-
"description": "Installation of packages and requiremens.",
235+
"description": "Installation of packages and requirements.",
236236
"type": "array",
237237
"items": {
238238
"anyOf": [

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 6 additions & 2 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.15"
968+
"default": "ghcr.io/containerbase/sidecar:10.7.0"
969969
},
970970
"dockerUser": {
971971
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1025,6 +1025,10 @@
10251025
"default": null,
10261026
"$ref": "#"
10271027
},
1028+
"encryptedWarning": {
1029+
"description": "Warning text to use if encrypted config is found.",
1030+
"type": "string"
1031+
},
10281032
"endpoint": {
10291033
"description": "Custom endpoint to use.",
10301034
"type": "string",
@@ -1690,7 +1694,7 @@
16901694
"default": []
16911695
},
16921696
"inheritConfig": {
1693-
"description": "If `true`, Renovate will inherit configuration from the `inheritConfigFileName` file in `inheritConfigRepoName",
1697+
"description": "If `true`, Renovate will inherit configuration from the `inheritConfigFileName` file in `inheritConfigRepoName`.",
16941698
"type": "boolean",
16951699
"default": false
16961700
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d6da49b4fca964c06525a7a39fb9d346ba7a5ee0ed185ce8f74c7a4e91c7b6c7
1+
589d4a1519173a8659b097ffdf5bdd00aa20fa4296720fe39c8a3a43c849dd6b
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a0f68510704ee2f80583e797de6adbf6061c949226eeee584a74d381464f1531
1+
2151f3b2f5cf7a4ef37147635ef67d9a5b1813af59ad27417fda9b92a48d7910
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eb41b78f09663bcfc413695cfa1ad317bb97789397a10eebfe174f88ef03e9d4
1+
ef1d80216d9d0e6a8927513418e14efd90dc5a65e90828124b517785afa70bc8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c12031e99497479db221a8728cf4d9a6a1b7d7af46ac737cd240c11537c16b91
1+
2513703e76b727801b472113f6f1cc379fa9a07be8aad6415e1a84ee15d40349

0 commit comments

Comments
 (0)