Skip to content

Commit

Permalink
Merge pull request #386 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Changes by create-pull-request action
  • Loading branch information
sirosen authored Jan 31, 2024
2 parents 2d5b668 + 66eeae1 commit 419dc09
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas (2024-01-31)

0.27.4
------

Expand Down
16 changes: 16 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/cloudbuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
"BuildStep": {
"description": "A step in the build pipeline.",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"description": "Required. The name of the container image that will run this particular\nbuild step.\n\nIf the image is available in the host's Docker daemon's cache, it\nwill be run directly. If not, the host will attempt to pull the image\nfirst, using the builder service account's credentials if necessary.\n\nThe Docker daemon's cache will already have the latest versions of all of\nthe officially supported build steps\n([https://github.com/GoogleCloudPlatform/cloud-builders](https://github.com/GoogleCloudPlatform/cloud-builders)).\nThe Docker daemon will also have cached many of the layers for some popular\nimages, like \"ubuntu\", \"debian\", but they will be refreshed at the time you\nattempt to use them.\n\nIf you built an image in a previous build step, it will be stored in the\nhost's Docker daemon's cache and is available to use as the name for a\nlater build step.",
"type": "string"
},
"allowFailure": {
"description": "In a build step, if you set the value of the allowFailure field to true, and the build step fails, then the build succeeds as long as all other build steps in that build succeed.",
"type": "boolean"
},
"allowExitCodes": {
"description": "Specify that a build step failure can be ignored when that step returns a particular exit code.",
"type": "array",
"items": {
"type": "number"
}
},
"waitFor": {
"description": "The ID(s) of the step(s) that this build step depends on.\nThis build step will not start until all the build steps in `wait_for`\nhave completed successfully. If `wait_for` is empty, this build step will\nstart when all previous build steps in the `Build.Steps` list have\ncompleted successfully.",
"type": "array",
Expand All @@ -28,6 +40,10 @@
"description": "Entrypoint to be used instead of the build step image's default entrypoint.\nIf unset, the image's default entrypoint is used.",
"type": "string"
},
"script": {
"description": "Specify a shell script to execute in the step.\nIf you specify script in a build step, you cannot specify args or entrypoint in the same step.",
"type": "string"
},
"volumes": {
"description": "List of volumes to mount into the build step.\n\nEach volume is created as an empty volume prior to execution of the\nbuild step. Upon completion of the build, volumes and their contents are\ndiscarded.\n\nUsing a named volume in only one step is not valid as it is indicative\nof a build request with an incorrect configuration.",
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0241ba344c9082bfcb6d06353576f0fe6dbef66e1da4a902cf42dd52d9225180
8016673e8b1ae32e742fd36b96ae472b2cce6eb5802e1121057316771f6f0ecf
4 changes: 1 addition & 3 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@
"fileMatch": [
"(^|/)bun\\.lockb$"
],
"versioning": "npm",
"digest": {
"prBodyDefinitions": {
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
Expand Down Expand Up @@ -897,7 +896,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:9.31.5"
"default": "ghcr.io/containerbase/sidecar:9.31.6"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1818,7 +1817,6 @@
"fileMatch": [
"(^|/)package\\.json$"
],
"versioning": "npm",
"digest": {
"prBodyDefinitions": {
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e25f5c73d3cdc7f9275d75291699b602bd9eadc7db7c509ac26596650b5aba80
8aa1cd8e4ce9579e12ef87ece34fbcf8b9f41912a55aeb7748cb361fbf4f59ea

0 comments on commit 419dc09

Please sign in to comment.