Skip to content

Commit 86d4b00

Browse files
authored
Merge pull request #296 from python-jsonschema/vendor-schemas-auto
Changes by create-pull-request action
2 parents e5b9f68 + 68f2a69 commit 86d4b00

15 files changed

+39
-19
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 (2023-08-25)
14+
1315
- Add Drone-CI schema and pre-commit hook. Thanks :user:`s-weigand`!
1416
(:pr:`299`)
1517

src/check_jsonschema/builtin_schemas/vendor/bamboo-spec.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,7 @@
594594
}
595595
},
596596
"description": "Full spec reference: https://docs.atlassian.com/bamboo-specs-docs/7.2.4/specs.html",
597+
"id": "https://json.schemastore.org/bamboo-spec.json",
597598
"properties": {
598599
"default-environment-permissions": {
599600
"title": "Default Environment Permissions",
@@ -727,7 +728,9 @@
727728
"type": "array",
728729
"items": {
729730
"oneOf": [
730-
{ "type": "string" },
731+
{
732+
"type": "string"
733+
},
731734
{
732735
"type": "object",
733736
"patternProperties": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
04fc2dd04109cf2a8d7fa6690396267deaa2e9673e5eed3751262cb2e0b78c02
1+
e1e83c1f89e5ebdf9b87edb34f1edd75e7cc84897a796ad0ad72c6a87d492cf5

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@
339339
}
340340
}
341341
},
342+
"id": "https://json.schemastore.org/dependabot-2.0.json",
342343
"properties": {
343344
"version": {
344345
"anyOf": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5aaef1fc6bc03108a2be24431d0f6891bf9a0396d86a40bf1bf2e89db2cde0fa
1+
dfbd8f86b013120a07c3200962189c8bb8b8c77a592b66b59bb71937ef8cb2ed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions",
3+
"$id": "https://json.schemastore.org/github-action.json",
34
"$schema": "http://json-schema.org/draft-07/schema#",
45
"additionalProperties": false,
56
"definitions": {
@@ -31,7 +32,7 @@
3132
"using": {
3233
"$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsusing",
3334
"description": "The application used to execute the code specified in `main`.",
34-
"enum": ["node12", "node16"]
35+
"enum": ["node12", "node16", "node20"]
3536
},
3637
"main": {
3738
"$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsmain",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7d48b78ff5ac0b40cd31ba0f7706cc3fb1af728f73a92b673a0ad8083ae6f468
1+
15f5495b65b30a6025e2b6ae957c9ffc887234167972601384e3cc3f116a7d54

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$comment": "https://help.github.com/en/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions",
3+
"$id": "https://json.schemastore.org/github-workflow.json",
34
"$schema": "http://json-schema.org/draft-07/schema#",
45
"additionalProperties": false,
56
"definitions": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b92aebb25a87d79f42dd1395ff129af49afbd577d474b828b5e8ad7d31d2dac7
1+
7c009ac488bfd9315bcdb66e2462c13caa8bcb30ad2de7adeb7c05cbc129698c

src/check_jsonschema/builtin_schemas/vendor/readthedocs.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,6 @@
261261
"default": "3",
262262
"deprecated": true
263263
},
264-
"system_packages": {
265-
"title": "System Packages",
266-
"description": "Give the virtual environment access to the global site-packages directory.",
267-
"type": "boolean",
268-
"default": false
269-
},
270264
"install": {
271265
"title": "Install",
272266
"description": "Installation of packages and requiremens.",

0 commit comments

Comments
 (0)