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 #486

Merged
merged 1 commit into from
Sep 30, 2024
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: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Unreleased

.. vendor-insert-here

- Update vendored schemas (2024-09-08)
- Update vendored schemas (2024-09-29)

0.29.2
------
Expand Down
8 changes: 8 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/circle-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -1244,6 +1244,8 @@
"description": "The LinuxVM image to use. View available images for [Ubuntu 20.04](https://circleci.com/developer/machine/image/ubuntu-2004), [Ubuntu 22.04](https://circleci.com/developer/machine/image/ubuntu-2204), or [Android](https://circleci.com/developer/machine/image/android). **Note:** This key is **not** supported on the installable CircleCI. For information about customizing machine executor images on CircleCI installed on your servers, see our [VM Service documentation](https://circleci.com/docs/vm-service).",
"type": "string",
"enum": [
"ubuntu-2004:2024.08.1",
"ubuntu-2004:2024.05.1",
"ubuntu-2004:2024.04.4",
"ubuntu-2004:2024.01.2",
"ubuntu-2004:2024.01.1",
Expand All @@ -1266,6 +1268,8 @@
"ubuntu-2004:202010-01",
"ubuntu-2004:current",
"ubuntu-2004:edge",
"ubuntu-2204:2024.08.1",
"ubuntu-2204:2024.05.1",
"ubuntu-2204:2024.04.4",
"ubuntu-2204:2024.01.2",
"ubuntu-2204:2024.01.1",
Expand All @@ -1282,6 +1286,10 @@
"ubuntu-2204:2022.04.1",
"ubuntu-2204:current",
"ubuntu-2204:edge",
"ubuntu-2404:2024.08.1",
"ubuntu-2404:2024.05.1",
"ubuntu-2404:current",
"ubuntu-2404:edge",
"android:2024.04.1",
"android:2024.01.1",
"android:2023.11.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"additionalProperties": false,
"definitions": {
"timezone": {
"$id": "timezone",
"type": "string",
"enum": [
"Africa/Abidjan",
Expand Down
5 changes: 4 additions & 1 deletion src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@
},
"definitions": {
"artifacts": {
"type": "object",
"type": [
"object",
"null"
],
"markdownDescription": "Used to specify a list of files and directories that should be attached to the job if it succeeds. Artifacts are sent to Gitlab where they can be downloaded. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifacts).",
"additionalProperties": false,
"properties": {
Expand Down
45 changes: 42 additions & 3 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,11 @@
},
"$ref": "#"
},
"bbAutoResolvePrTasks": {
"description": "The PR tasks will be automatically completed after the PR is raised.",
"type": "boolean",
"default": false
},
"bbUseDefaultReviewers": {
"description": "Use the default reviewers (Bitbucket only).",
"type": "boolean",
Expand Down Expand Up @@ -1012,7 +1017,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:11.11.11"
"default": "ghcr.io/containerbase/sidecar:11.11.26"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -3521,9 +3526,43 @@
"rangeStrategy": "update-lockfile",
"commitMessageSuffix": "[SECURITY]",
"branchTopic": "{{{datasource}}}-{{{depNameSanitized}}}-vulnerability",
"prCreation": "immediate"
"prCreation": "immediate",
"vulnerabilityFixStrategy": "lowest"
},
"$ref": "#"
"$ref": "#",
"items": {
"allOf": [
{
"type": "object",
"properties": {
"description": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"description": "A custom description for this configuration object"
}
},
{
"type": "string",
"description": "A custom description for this configuration object"
}
]
},
"vulnerabilityFixStrategy": {
"description": "Strategy to use when fixing vulnerabilities. `lowest` will propose the earliest version with a fix, `highest` will always pick the latest version.",
"type": "string",
"enum": [
"lowest",
"highest"
],
"default": "lowest"
}
}
}
]
}
},
"woodpecker": {
"description": "Configuration object for the woodpecker manager",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2463b456c46789f2ec2f6c9beaca294d10ee7520e021aa775fd1854eb608dd53
9ad1566d20e39aa31b80fd8b0dd5260dbee7c7a31004788870f5aad72357a0df
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1faf572ced1c1dea55a27128d761e32b3b6911e47daa3da003f2db66d8ef71be
1f5afac7eb5ee50963833afee1cc7a714ae1b097ab24ec2e91b760e6baa30b76
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9eae55e56d25b26d95e7f3efa69773452d43598f11382b1a8b0254c7385aa056
7424b31d028166a644abc58bd0295d305a37bcd82e84e3bf5e13f7e207c45281
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9e98bf9eb3e4277d98e687d6124b96dfe6fb969457b9d56d0e81c38f181c3ecc
c57caa2f7b710695628492dba3a56dee4731751ffb9e9127d5a90230715ad459
Original file line number Diff line number Diff line change
@@ -1 +1 @@
39f6e12a0594365a9d205e51278ae4d5877e99cf16d6881d405a928ce02d248b
2008ccfc77aff49680bca81dea4b4d1ba348f606184bfce63a0b0a2bcdd3b9e1
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,9 @@
"environment": {
"$ref": "#/definitions/step_environment"
},
"directory": {
"$ref": "#/definitions/step_directory"
},
"secrets": {
"$ref": "#/definitions/step_secrets"
},
Expand Down