Skip to content

Commit 419dc09

Browse files
authored
Merge pull request #386 from python-jsonschema/vendor-schemas-auto
Changes by create-pull-request action
2 parents 2d5b668 + 66eeae1 commit 419dc09

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
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-01-31)
14+
1315
0.27.4
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/cloudbuild.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55
"BuildStep": {
66
"description": "A step in the build pipeline.",
77
"type": "object",
8+
"additionalProperties": false,
89
"properties": {
910
"name": {
1011
"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.",
1112
"type": "string"
1213
},
14+
"allowFailure": {
15+
"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.",
16+
"type": "boolean"
17+
},
18+
"allowExitCodes": {
19+
"description": "Specify that a build step failure can be ignored when that step returns a particular exit code.",
20+
"type": "array",
21+
"items": {
22+
"type": "number"
23+
}
24+
},
1325
"waitFor": {
1426
"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.",
1527
"type": "array",
@@ -28,6 +40,10 @@
2840
"description": "Entrypoint to be used instead of the build step image's default entrypoint.\nIf unset, the image's default entrypoint is used.",
2941
"type": "string"
3042
},
43+
"script": {
44+
"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.",
45+
"type": "string"
46+
},
3147
"volumes": {
3248
"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.",
3349
"type": "array",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0241ba344c9082bfcb6d06353576f0fe6dbef66e1da4a902cf42dd52d9225180
1+
8016673e8b1ae32e742fd36b96ae472b2cce6eb5802e1121057316771f6f0ecf

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,6 @@
397397
"fileMatch": [
398398
"(^|/)bun\\.lockb$"
399399
],
400-
"versioning": "npm",
401400
"digest": {
402401
"prBodyDefinitions": {
403402
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
@@ -897,7 +896,7 @@
897896
"dockerSidecarImage": {
898897
"description": "Change this value to override the default Renovate sidecar image.",
899898
"type": "string",
900-
"default": "ghcr.io/containerbase/sidecar:9.31.5"
899+
"default": "ghcr.io/containerbase/sidecar:9.31.6"
901900
},
902901
"dockerUser": {
903902
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1818,7 +1817,6 @@
18181817
"fileMatch": [
18191818
"(^|/)package\\.json$"
18201819
],
1821-
"versioning": "npm",
18221820
"digest": {
18231821
"prBodyDefinitions": {
18241822
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e25f5c73d3cdc7f9275d75291699b602bd9eadc7db7c509ac26596650b5aba80
1+
8aa1cd8e4ce9579e12ef87ece34fbcf8b9f41912a55aeb7748cb361fbf4f59ea

0 commit comments

Comments
 (0)