Skip to content

Commit

Permalink
[vendor-schemas] automated update (#357)
Browse files Browse the repository at this point in the history
Co-authored-by: sirosen <[email protected]>
  • Loading branch information
github-actions[bot] and sirosen authored Dec 5, 2023
1 parent e0e7da4 commit bb2be1c
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 27 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 (2023-12-05)

0.27.2
------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,12 @@
"description": "Sets the type of environment for your deployment step, used in the Deployments dashboard.",
"minLength": 1
},
"oidc": {
"type": "boolean",
"title": "OpenID Connect",
"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.",
"default": false
},
"condition": {
"type": "object",
"title": "Execute step when only condition is satisfied",
Expand Down Expand Up @@ -672,6 +678,18 @@
"$ref": "#/definitions/simpleImage"
},
"aws": {
"$ref": "#/definitions/awsCredentials"
},
"run-as-user": {
"$ref": "#/definitions/runAsUser"
}
},
"required": ["name", "aws"],
"additionalProperties": false
},
"awsCredentials": {
"oneOf": [
{
"type": "object",
"description": "AWS credentials",
"properties": {
Expand All @@ -692,15 +710,20 @@
],
"additionalProperties": false
},
"run-as-user": {
"$ref": "#/definitions/runAsUser"
{
"type": "object",
"description": "AWS credentials",
"properties": {
"oidc-role": {
"type": "string",
"description": "AWS IAM Role assumable using OpenID Connect",
"minLength": 1
}
},
"required": ["oidc-role"],
"additionalProperties": false
}
},
"required": [
"name",
"aws"
],
"additionalProperties": false
]
},
"image": {
"oneOf": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
de0f949f4ce975d2263aff83758d8ea07443dfbe50a9d29aed6eb9d92066f06e
c7952c6904acf687a2e9f048e2934f30900228fa8f8544cc8c9fe5ef1ce07ee4
35 changes: 26 additions & 9 deletions src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,18 @@
"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.",
"minItems": 1
},
"docker": {
"type": "object",
"markdownDescription": "Options to pass to Runners Docker Executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#imagedocker)",
"additionalProperties": false,
"properties": {
"platform": {
"type": "string",
"minLength": 1,
"description": "Image architecture to pull."
}
}
},
"pull_policy": {
"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).",
"default": "always",
Expand Down Expand Up @@ -540,13 +552,6 @@
"required": [
"name"
]
},
{
"type": "array",
"minLength": 1,
"items": {
"type": "string"
}
}
],
"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)."
Expand Down Expand Up @@ -579,8 +584,20 @@
"type": "string"
}
},
"docker": {
"type": "object",
"markdownDescription": "Options to pass to Runners Docker Executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#servicesdocker)",
"additionalProperties": false,
"properties": {
"platform": {
"type": "string",
"minLength": 1,
"description": "Image architecture to pull."
}
}
},
"pull_policy": {
"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).",
"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).",
"default": "always",
"oneOf": [
{
Expand Down Expand Up @@ -1480,7 +1497,7 @@
},
{
"const": "data_integrity_failure",
"description": "Retry if there is a structural integrity problem detected."
"description": "Retry if there is an unknown job problem."
}
]
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3d9c02dd6ed7e1f948fe5d0d0cacee98c7b270923b956ce13a478c40f92c25f1
09bcd1245f7d56621d13f9b03a99c68118fbea738f0f93c87e720db6e5241340
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"additionalProperties": false
},
"sphinx": {
"title": "Sphix",
"title": "Sphinx",
"description": "Configuration for sphinx documentation.",
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bc2acddb726add210a7039dfbc2931951d2aed1cbd9f2d073941729f6b8d186b
201739ab6e4b2598ed08bb1c705ba5da567a81bcb5df500ac9d8b15c957d33f7
15 changes: 10 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:9.24.0"
"default": "ghcr.io/containerbase/sidecar:9.27.0"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1318,7 +1318,7 @@
},
"commitMessageTopic": "helm chart {{depName}}",
"fileMatch": [
"(^|/)helmfile\\.ya?ml$"
"(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$"
]
},
"$ref": "#"
Expand Down Expand Up @@ -1448,8 +1448,8 @@
"description": "Explicitly turn on insecure Docker registry access (HTTP).",
"type": "boolean"
},
"keepalive": {
"description": "Enable HTTP keepalives for hosts.",
"keepAlive": {
"description": "Enable HTTP keep-alive for hosts.",
"type": "boolean",
"default": false
},
Expand Down Expand Up @@ -2630,6 +2630,11 @@
},
"$ref": "#"
},
"presetCachePersistence": {
"description": "Cache resolved presets in package cache.",
"type": "boolean",
"default": false
},
"printConfig": {
"description": "If enabled, Renovate logs the fully resolved config for each repository, plus the fully resolved presets.",
"type": "boolean",
Expand Down Expand Up @@ -2786,7 +2791,7 @@
"commitMessageAction": "Replace",
"commitMessageExtra": "with {{newName}} {{#if isMajor}}{{{prettyNewMajor}}}{{else}}{{#if isSingleVersion}}{{{prettyNewVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}",
"prBodyNotes": [
"This is a special PR that replaces `{{{depNameSanitized}}}` with the community suggested minimal stable replacement version."
"This is a special PR that replaces `{{{depName}}}` with the community suggested minimal stable replacement version."
]
},
"$ref": "#"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e5aaa54d64684924f8ca840403386b73e1aa50ebe46b37113455295438e96e0a
aac4682c8efe7d19676e75a08657476390093774246d95235e4acfd089f4021e

0 comments on commit bb2be1c

Please sign in to comment.