Skip to content

Commit

Permalink
Merge pull request #447 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Update vendored schemas
  • Loading branch information
sirosen authored Jun 24, 2024
2 parents f4994e9 + f34595d commit 1db6023
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas (2024-06-16)
- Update vendored schemas (2024-06-23)

0.28.5
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,18 @@
"title": "Clone Repository Settings",
"type": "object"
},
"cloud": {
"description": "Custom cloud step runtime",
"properties": {
"atlassian-ip-ranges": {
"default": false,
"description": "Whether it uses Atlassian ip ranges.",
"type": "boolean"
}
},
"title": "Cloud step runtime",
"type": "object"
},
"condition": {
"properties": {
"changesets": {
Expand Down Expand Up @@ -557,6 +569,9 @@
"max-time": {
"$ref": "#/components/schemas/max_time"
},
"runtime": {
"$ref": "#/components/schemas/runtime"
},
"size": {
"$ref": "#/components/schemas/size"
}
Expand Down Expand Up @@ -640,6 +655,16 @@
"title": "Step Runner Label",
"type": "string"
},
"runtime": {
"description": "Custom step runtime",
"properties": {
"cloud": {
"$ref": "#/components/schemas/cloud"
}
},
"title": "Step Runtime",
"type": "object"
},
"script": {
"items": {
"oneOf": [
Expand Down Expand Up @@ -700,7 +725,8 @@
"2x",
"4x",
"8x",
"16x"
"16x",
"32x"
],
"title": "Step Size",
"type": "string"
Expand Down Expand Up @@ -838,6 +864,9 @@
"runs-on": {
"$ref": "#/components/schemas/runs_on"
},
"runtime": {
"$ref": "#/components/schemas/runtime"
},
"script": {
"$ref": "#/components/schemas/script",
"description": "List of commands that are executed in sequence.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"enum": [
"ubuntu-20.04",
"ubuntu-22.04",
"ubuntu-24.04",
"ubuntu-lts-latest"
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.11.6"
"default": "ghcr.io/containerbase/sidecar:10.11.7"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
60586ed3669f79395b4689de2e99d44876d4c83670e144b28f980d3aa414d795
3dd04c344f6d3f3211c9ad7fd775b2c3ccd309c75c2d00f379b0339abfb57e5e
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8696f08cc4b6d81fcf91168ee1c3c483b8a471ed36f5cdbf34e202ab0e8b683b
c64013c6d817252e76a357a1c00fc645c7c8760811991dd74c325aff8b5c0464
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8dd71c2ef78037a9573ba44c6e028e31de368f93f4cd702a2ac1ec722cc69b11
ddfe7dda772797830c75a5df98aa1129a17c36c9661251120420b91e7de3e906

0 comments on commit 1db6023

Please sign in to comment.