Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vendored schemas #546

Merged
merged 1 commit into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: buildkite, renovate, taskfile, woodpecker-ci (2025-03-30)

0.32.1
------

Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"limit": {
"type": "integer",
"description": "The number of times this job can be retried",
"minimum": 1,
"minimum": 0,
"maximum": 10
},
"signal": {
Expand Down
1 change: 1 addition & 0 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2841,6 +2841,7 @@
"gomodSkipVendor",
"gomodVendor",
"helmUpdateSubChartArchives",
"kustomizeInflateHelmArchives",
"npmDedupe",
"pnpmDedupe",
"yarnDedupeFewer",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
128a96e0088b34eb6c1bd591df82a32e1e6743a4bd7c38fc0f5819b2e1ef831a
ff30bd5f6d22b965472c1c289bc90e92e837ce136c83a4a7f6ad6cc54132fa99
Original file line number Diff line number Diff line change
@@ -1 +1 @@
30ab380b17083e659ff9e7e5ff8d770e89b2d5889fdb526407a9a4a807dedefc
445f57f60b4f89b7cf53a97a8c0b31eb736b58a1709cb6987cfe5e22d6629e35
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b40df180ca88093a8be667dd996b43221de2ad6d85c48f78e5f43784d29dc9a9
28800e334ac29e62ee6aec9dedde91da147f8ae5bfebf59ed078f8beaecbb950
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cbdc42a5f4ff756568f95391688075622327e790cdcb669719cec3e192923878
927fec729aca41a30c4c6d73aae3ef7a0a8572d3fdcf6faf569a4869c71d59f0
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/taskfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@
"^.*$": {
"anyOf": [
{
"type": ["boolean", "integer", "null", "number", "string", "object", "array"]
"type": ["boolean", "integer", "null", "number", "string", "array"]
},
{
"$ref": "#/definitions/var_subkey"
Expand Down
10 changes: 5 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@
"$ref": "#/definitions/step_backend_kubernetes_security_context"
},
"runtimeClassName": {
"description": "Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#runtimeclassname",
"description": "Read more: https://woodpecker-ci.org/docs/administration/configuration/backends/kubernetes#runtimeclassname",
"type": "string"
},
"secrets": {
Expand All @@ -664,7 +664,7 @@
}
},
"step_backend_kubernetes_resources": {
"description": "Resources for the kubernetes backend. Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#job-specific-configuration",
"description": "Resources for the kubernetes backend. Read more: https://woodpecker-ci.org/docs/administration/configuration/backends/kubernetes#step-specific-configuration",
"type": "object",
"properties": {
"requests": {
Expand All @@ -676,7 +676,7 @@
}
},
"step_backend_kubernetes_security_context": {
"description": "Pods / containers security context. Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#securitycontext",
"description": "Pods / containers security context. Read more: https://woodpecker-ci.org/docs/administration/configuration/backends/kubernetes#security-context",
"type": "object",
"properties": {
"privileged": {
Expand All @@ -703,7 +703,7 @@
}
},
"step_backend_kubernetes_secprofile": {
"description": "Pods / containers security profile. Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#job-specific-configuration",
"description": "Pods / containers security profile. Read more: https://woodpecker-ci.org/docs/administration/configuration/backends/kubernetes#step-specific-configuration",
"type": "object",
"properties": {
"type": {
Expand All @@ -722,7 +722,7 @@
}
},
"step_backend_kubernetes_service_account": {
"description": "serviceAccountName to be use by job. Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#serviceaccountname",
"description": "serviceAccountName to be use by job. Read more: https://woodpecker-ci.org/docs/administration/configuration/backends/kubernetes#service-account",
"type": "object",
"properties": {
"requests": {
Expand Down