Skip to content

Commit bb2be1c

Browse files
[vendor-schemas] automated update (#357)
Co-authored-by: sirosen <[email protected]>
1 parent e0e7da4 commit bb2be1c

File tree

9 files changed

+74
-27
lines changed

9 files changed

+74
-27
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-12-05)
14+
1315
0.27.2
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/bitbucket-pipelines.json

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,12 @@
328328
"description": "Sets the type of environment for your deployment step, used in the Deployments dashboard.",
329329
"minLength": 1
330330
},
331+
"oidc": {
332+
"type": "boolean",
333+
"title": "OpenID Connect",
334+
"description": "Enables the use of OpenID Connect with Pipelines and your resource server. The oidc value must be set to true to set up and configure OpenID Connect.",
335+
"default": false
336+
},
331337
"condition": {
332338
"type": "object",
333339
"title": "Execute step when only condition is satisfied",
@@ -672,6 +678,18 @@
672678
"$ref": "#/definitions/simpleImage"
673679
},
674680
"aws": {
681+
"$ref": "#/definitions/awsCredentials"
682+
},
683+
"run-as-user": {
684+
"$ref": "#/definitions/runAsUser"
685+
}
686+
},
687+
"required": ["name", "aws"],
688+
"additionalProperties": false
689+
},
690+
"awsCredentials": {
691+
"oneOf": [
692+
{
675693
"type": "object",
676694
"description": "AWS credentials",
677695
"properties": {
@@ -692,15 +710,20 @@
692710
],
693711
"additionalProperties": false
694712
},
695-
"run-as-user": {
696-
"$ref": "#/definitions/runAsUser"
713+
{
714+
"type": "object",
715+
"description": "AWS credentials",
716+
"properties": {
717+
"oidc-role": {
718+
"type": "string",
719+
"description": "AWS IAM Role assumable using OpenID Connect",
720+
"minLength": 1
721+
}
722+
},
723+
"required": ["oidc-role"],
724+
"additionalProperties": false
697725
}
698-
},
699-
"required": [
700-
"name",
701-
"aws"
702-
],
703-
"additionalProperties": false
726+
]
704727
},
705728
"image": {
706729
"oneOf": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
de0f949f4ce975d2263aff83758d8ea07443dfbe50a9d29aed6eb9d92066f06e
1+
c7952c6904acf687a2e9f048e2934f30900228fa8f8544cc8c9fe5ef1ce07ee4

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,18 @@
509509
"description": "Command or script that should be executed as the container's entrypoint. It will be translated to Docker's --entrypoint option while creating the container. The syntax is similar to Dockerfile's ENTRYPOINT directive, where each shell token is a separate string in the array.",
510510
"minItems": 1
511511
},
512+
"docker": {
513+
"type": "object",
514+
"markdownDescription": "Options to pass to Runners Docker Executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#imagedocker)",
515+
"additionalProperties": false,
516+
"properties": {
517+
"platform": {
518+
"type": "string",
519+
"minLength": 1,
520+
"description": "Image architecture to pull."
521+
}
522+
}
523+
},
512524
"pull_policy": {
513525
"markdownDescription": "Specifies how to pull the image in Runner. It can be one of `always`, `never` or `if-not-present`. The default value is `always`. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#imagepull_policy).",
514526
"default": "always",
@@ -540,13 +552,6 @@
540552
"required": [
541553
"name"
542554
]
543-
},
544-
{
545-
"type": "array",
546-
"minLength": 1,
547-
"items": {
548-
"type": "string"
549-
}
550555
}
551556
],
552557
"markdownDescription": "Specifies the docker image to use for the job or globally for all jobs. Job configuration takes precedence over global setting. Requires a certain kind of Gitlab runner executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#image)."
@@ -579,8 +584,20 @@
579584
"type": "string"
580585
}
581586
},
587+
"docker": {
588+
"type": "object",
589+
"markdownDescription": "Options to pass to Runners Docker Executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#servicesdocker)",
590+
"additionalProperties": false,
591+
"properties": {
592+
"platform": {
593+
"type": "string",
594+
"minLength": 1,
595+
"description": "Image architecture to pull."
596+
}
597+
}
598+
},
582599
"pull_policy": {
583-
"markdownDescription": "Specifies how to pull the image in Runner. It can be one of `always`, `never` or `if-not-present`. The default value is `always`. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#servicepull_policy).",
600+
"markdownDescription": "Specifies how to pull the image in Runner. It can be one of `always`, `never` or `if-not-present`. The default value is `always`. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#servicespull_policy).",
584601
"default": "always",
585602
"oneOf": [
586603
{
@@ -1480,7 +1497,7 @@
14801497
},
14811498
{
14821499
"const": "data_integrity_failure",
1483-
"description": "Retry if there is a structural integrity problem detected."
1500+
"description": "Retry if there is an unknown job problem."
14841501
}
14851502
]
14861503
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3d9c02dd6ed7e1f948fe5d0d0cacee98c7b270923b956ce13a478c40f92c25f1
1+
09bcd1245f7d56621d13f9b03a99c68118fbea738f0f93c87e720db6e5241340

src/check_jsonschema/builtin_schemas/vendor/readthedocs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
"additionalProperties": false
271271
},
272272
"sphinx": {
273-
"title": "Sphix",
273+
"title": "Sphinx",
274274
"description": "Configuration for sphinx documentation.",
275275
"type": "object",
276276
"properties": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bc2acddb726add210a7039dfbc2931951d2aed1cbd9f2d073941729f6b8d186b
1+
201739ab6e4b2598ed08bb1c705ba5da567a81bcb5df500ac9d8b15c957d33f7

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@
888888
"dockerSidecarImage": {
889889
"description": "Change this value to override the default Renovate sidecar image.",
890890
"type": "string",
891-
"default": "ghcr.io/containerbase/sidecar:9.24.0"
891+
"default": "ghcr.io/containerbase/sidecar:9.27.0"
892892
},
893893
"dockerUser": {
894894
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1318,7 +1318,7 @@
13181318
},
13191319
"commitMessageTopic": "helm chart {{depName}}",
13201320
"fileMatch": [
1321-
"(^|/)helmfile\\.ya?ml$"
1321+
"(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$"
13221322
]
13231323
},
13241324
"$ref": "#"
@@ -1448,8 +1448,8 @@
14481448
"description": "Explicitly turn on insecure Docker registry access (HTTP).",
14491449
"type": "boolean"
14501450
},
1451-
"keepalive": {
1452-
"description": "Enable HTTP keepalives for hosts.",
1451+
"keepAlive": {
1452+
"description": "Enable HTTP keep-alive for hosts.",
14531453
"type": "boolean",
14541454
"default": false
14551455
},
@@ -2630,6 +2630,11 @@
26302630
},
26312631
"$ref": "#"
26322632
},
2633+
"presetCachePersistence": {
2634+
"description": "Cache resolved presets in package cache.",
2635+
"type": "boolean",
2636+
"default": false
2637+
},
26332638
"printConfig": {
26342639
"description": "If enabled, Renovate logs the fully resolved config for each repository, plus the fully resolved presets.",
26352640
"type": "boolean",
@@ -2786,7 +2791,7 @@
27862791
"commitMessageAction": "Replace",
27872792
"commitMessageExtra": "with {{newName}} {{#if isMajor}}{{{prettyNewMajor}}}{{else}}{{#if isSingleVersion}}{{{prettyNewVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}",
27882793
"prBodyNotes": [
2789-
"This is a special PR that replaces `{{{depNameSanitized}}}` with the community suggested minimal stable replacement version."
2794+
"This is a special PR that replaces `{{{depName}}}` with the community suggested minimal stable replacement version."
27902795
]
27912796
},
27922797
"$ref": "#"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e5aaa54d64684924f8ca840403386b73e1aa50ebe46b37113455295438e96e0a
1+
aac4682c8efe7d19676e75a08657476390093774246d95235e4acfd089f4021e

0 commit comments

Comments
 (0)