From b14da78eb5c4938eb832a62b8e44d96d390c143b Mon Sep 17 00:00:00 2001 From: sirosen <1300022+sirosen@users.noreply.github.com> Date: Sun, 30 Jun 2024 04:22:40 +0000 Subject: [PATCH] [vendor-schemas] automated update --- CHANGELOG.rst | 2 + .../builtin_schemas/vendor/renovate.json | 19 +++++--- .../vendor/sha256/renovate.sha256 | 2 +- .../vendor/sha256/woodpecker-ci.sha256 | 2 +- .../builtin_schemas/vendor/woodpecker-ci.json | 43 +++++++++++++++++++ 5 files changed, 61 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c40179693..a8f6f6955 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,8 @@ Unreleased ---------- .. vendor-insert-here + +- Update vendored schemas (2024-06-30) - Fix an ordering bug which caused caching to be ineffective, resulting in repeated downloads of remote schemas even when the cache was populated. Thanks :user:`alex1701c` for reporting! (:issue:`453`) diff --git a/src/check_jsonschema/builtin_schemas/vendor/renovate.json b/src/check_jsonschema/builtin_schemas/vendor/renovate.json index 5ae791f38..5fb46c533 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/renovate.json +++ b/src/check_jsonschema/builtin_schemas/vendor/renovate.json @@ -965,7 +965,7 @@ "dockerSidecarImage": { "description": "Change this value to override the default Renovate sidecar image.", "type": "string", - "default": "ghcr.io/containerbase/sidecar:10.11.7" + "default": "ghcr.io/containerbase/sidecar:10.12.0" }, "dockerUser": { "description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.", @@ -3207,6 +3207,17 @@ }, "$ref": "#" }, + "runtime-version": { + "description": "Configuration object for the runtime-version manager", + "type": "object", + "default": { + "fileMatch": [ + "(^|/)runtime.txt$" + ], + "pinDigests": false + }, + "$ref": "#" + }, "sbt": { "description": "Configuration object for the sbt manager", "type": "object", @@ -3339,7 +3350,6 @@ "branchAutomergeFailure", "configErrorIssue", "dependencyLookupWarnings", - "deprecationWarningIssues", "lockFileErrors", "missingCredentialsError", "onboardingClose", @@ -3347,9 +3357,7 @@ "prIgnoreNotification" ] }, - "default": [ - "deprecationWarningIssues" - ] + "default": [] }, "swift": { "description": "Configuration object for the swift manager", @@ -3581,6 +3589,7 @@ "rez", "rpm", "ruby", + "same-major", "semver", "semver-coerced", "swift", diff --git a/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 b/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 index dec5d4a6c..15b172a8a 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 +++ b/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 @@ -1 +1 @@ -ddfe7dda772797830c75a5df98aa1129a17c36c9661251120420b91e7de3e906 \ No newline at end of file +b008cf9527af892ae6e23001be9783836f73386b3919d96cb357c68cc67be65a \ No newline at end of file diff --git a/src/check_jsonschema/builtin_schemas/vendor/sha256/woodpecker-ci.sha256 b/src/check_jsonschema/builtin_schemas/vendor/sha256/woodpecker-ci.sha256 index 665f15566..f3947dad8 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/sha256/woodpecker-ci.sha256 +++ b/src/check_jsonschema/builtin_schemas/vendor/sha256/woodpecker-ci.sha256 @@ -1 +1 @@ -12c7dc514cac2a440d324fc66e23fcf403d679e56775d0b18580617992550aca \ No newline at end of file +04a2cb3dd3eb0d119d820c9bc71e1560a2687eda1f2fdda2e4e365aa0ca0dc84 \ No newline at end of file diff --git a/src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json b/src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json index f735c0ea3..79f5cb21c 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json +++ b/src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json @@ -730,6 +730,14 @@ "runtimeClassName": { "description": "Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#runtimeclassname", "type": "string" + }, + "secrets": { + "description": "The secrets section defines a list of references to the native Kubernetes secrets", + "type": "array", + "items": { + "$ref": "#/definitions/step_kubernetes_secret" + }, + "minLength": 1 } } }, @@ -810,6 +818,41 @@ "type": "string" } }, + "step_kubernetes_secret": { + "description": "A reference to a native Kubernetes secret", + "type": "object", + "additionalProperties": false, + "properties": { + "name": { + "description": "The name of the secret. Can be used if using the array style secrets list.", + "type": "string" + }, + "key": { + "description": "The key of the secret to select from.", + "type": "string" + }, + "target": { + "$ref": "#/definitions/step_kubernetes_secret_target" + } + } + }, + "step_kubernetes_secret_target": { + "description": "A target which a native Kubernetes secret maps to.", + "oneOf": [ + { + "env": { + "description": "The name of the environment variable which secret maps to.", + "type": "string" + } + }, + { + "file": { + "description": "The filename (path) which secret maps to.", + "type": "string" + } + } + ] + }, "services": { "description": "Read more: https://woodpecker-ci.org/docs/usage/services", "oneOf": [