Skip to content

Commit cc7d862

Browse files
sirosengithub-actions[bot]
authored andcommitted
[vendor-schemas] automated update
1 parent d9de842 commit cc7d862

File tree

7 files changed

+41
-276
lines changed

7 files changed

+41
-276
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 (2024-07-28)
14+
1315
0.29.1
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/github-workflows.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@
494494
"$comment": "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_iduses",
495495
"description": "The location and version of a reusable workflow file to run as a job, of the form './{path/to}/{localfile}.yml' or '{owner}/{repo}/{path}/{filename}@{ref}'. {ref} can be a SHA, a release tag, or a branch name. Using the commit SHA is the safest for stability and security.",
496496
"type": "string",
497-
"pattern": "^(.+/)+(.+)\\.(ya?ml)(@.+)?$"
497+
"pattern": "^(.+\\/)+(.+)\\.(ya?ml)(@.+)?$"
498498
},
499499
"with": {
500500
"$comment": "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idwith",

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 29 additions & 198 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,16 @@
374374
},
375375
"$ref": "#"
376376
},
377+
"bitrise": {
378+
"description": "Configuration object for the bitrise manager",
379+
"type": "object",
380+
"default": {
381+
"fileMatch": [
382+
"(^|/)bitrise\\.ya?ml$"
383+
]
384+
},
385+
"$ref": "#"
386+
},
377387
"branchConcurrentLimit": {
378388
"description": "Limit to a maximum of x concurrent branches. 0 means no limit, `null` (default) inherits value from `prConcurrentLimit`.",
379389
"type": "integer",
@@ -970,7 +980,7 @@
970980
"dockerSidecarImage": {
971981
"description": "Change this value to override the default Renovate sidecar image.",
972982
"type": "string",
973-
"default": "ghcr.io/containerbase/sidecar:10.15.6"
983+
"default": "ghcr.io/containerbase/sidecar:11.1.2"
974984
},
975985
"dockerUser": {
976986
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1831,15 +1841,6 @@
18311841
"type": "string",
18321842
"default": null
18331843
},
1834-
"logFile": {
1835-
"description": "Log file path.",
1836-
"type": "string"
1837-
},
1838-
"logFileLevel": {
1839-
"description": "Set the log file log level.",
1840-
"type": "string",
1841-
"default": "debug"
1842-
},
18431844
"logLevelRemap": {
18441845
"description": "Remap log levels to different levels.",
18451846
"type": "array",
@@ -1994,7 +1995,8 @@
19941995
"type": "object",
19951996
"default": {
19961997
"fileMatch": [
1997-
"(^|/)\\.mise\\.toml$"
1998+
"(^|/)\\.?mise\\.toml$",
1999+
"(^|/)\\.?mise/config\\.toml$"
19982000
]
19992001
},
20002002
"$ref": "#"
@@ -2136,8 +2138,13 @@
21362138
},
21372139
"onboardingNoDeps": {
21382140
"description": "Onboard the repository even if no dependencies are found.",
2139-
"type": "boolean",
2140-
"default": false
2141+
"type": "string",
2142+
"enum": [
2143+
"auto",
2144+
"enabled",
2145+
"disabled"
2146+
],
2147+
"default": "auto"
21412148
},
21422149
"onboardingPrTitle": {
21432150
"description": "Change this value to override the default onboarding PR title.",
@@ -2197,111 +2204,9 @@
21972204
"type": "string"
21982205
},
21992206
"changelogUrl": {
2200-
"description": "If set, Renovate will use this URL to fetch changelogs for a matched dependency. Valid only within a `packageRules` object.",
2207+
"description": "Set a custom URL for the changelog. Renovate will put this URL in the PR body text.",
22012208
"type": "string"
22022209
},
2203-
"excludeDepNames": {
2204-
"description": "Dep names to exclude. Valid only within a `packageRules` object.",
2205-
"oneOf": [
2206-
{
2207-
"type": "array",
2208-
"items": {
2209-
"type": "string"
2210-
}
2211-
},
2212-
{
2213-
"type": "string"
2214-
}
2215-
]
2216-
},
2217-
"excludeDepPatterns": {
2218-
"description": "Dep name patterns to exclude. Valid only within a `packageRules` object.",
2219-
"oneOf": [
2220-
{
2221-
"type": "array",
2222-
"items": {
2223-
"type": "string",
2224-
"format": "regex"
2225-
}
2226-
},
2227-
{
2228-
"type": "string",
2229-
"format": "regex"
2230-
}
2231-
]
2232-
},
2233-
"excludeDepPrefixes": {
2234-
"description": "Dep names prefixes to exclude. Valid only within a `packageRules` object.",
2235-
"oneOf": [
2236-
{
2237-
"type": "array",
2238-
"items": {
2239-
"type": "string"
2240-
}
2241-
},
2242-
{
2243-
"type": "string"
2244-
}
2245-
]
2246-
},
2247-
"excludePackageNames": {
2248-
"description": "Package names to exclude. Valid only within a `packageRules` object.",
2249-
"oneOf": [
2250-
{
2251-
"type": "array",
2252-
"items": {
2253-
"type": "string"
2254-
}
2255-
},
2256-
{
2257-
"type": "string"
2258-
}
2259-
]
2260-
},
2261-
"excludePackagePatterns": {
2262-
"description": "Package name patterns to exclude. Valid only within a `packageRules` object.",
2263-
"oneOf": [
2264-
{
2265-
"type": "array",
2266-
"items": {
2267-
"type": "string",
2268-
"format": "regex"
2269-
}
2270-
},
2271-
{
2272-
"type": "string",
2273-
"format": "regex"
2274-
}
2275-
]
2276-
},
2277-
"excludePackagePrefixes": {
2278-
"description": "Package name prefixes to exclude. Valid only within a `packageRules` object.",
2279-
"oneOf": [
2280-
{
2281-
"type": "array",
2282-
"items": {
2283-
"type": "string"
2284-
}
2285-
},
2286-
{
2287-
"type": "string"
2288-
}
2289-
]
2290-
},
2291-
"excludeRepositories": {
2292-
"description": "List of repositories to exclude (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.",
2293-
"oneOf": [
2294-
{
2295-
"type": "array",
2296-
"items": {
2297-
"type": "string"
2298-
}
2299-
},
2300-
{
2301-
"type": "string"
2302-
}
2303-
]
2304-
},
23052210
"matchBaseBranches": {
23062211
"description": "List of strings containing exact matches (e.g. `[\"main\"]`) and/or regex expressions (e.g. `[\"/^release/.*/\"]`). Valid only within a `packageRules` object.",
23072212
"oneOf": [
@@ -2396,36 +2301,6 @@
23962301
}
23972302
]
23982303
},
2399-
"matchDepPatterns": {
2400-
"description": "Dep name patterns to match. Valid only within a `packageRules` object.",
2401-
"oneOf": [
2402-
{
2403-
"type": "array",
2404-
"items": {
2405-
"type": "string",
2406-
"format": "regex"
2407-
}
2408-
},
2409-
{
2410-
"type": "string",
2411-
"format": "regex"
2412-
}
2413-
]
2414-
},
2415-
"matchDepPrefixes": {
2416-
"description": "Dep names prefixes to match. Valid only within a `packageRules` object.",
2417-
"oneOf": [
2418-
{
2419-
"type": "array",
2420-
"items": {
2421-
"type": "string"
2422-
}
2423-
},
2424-
{
2425-
"type": "string"
2426-
}
2427-
]
2428-
},
24292304
"matchDepTypes": {
24302305
"description": "List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object.",
24312306
"oneOf": [
@@ -2479,36 +2354,6 @@
24792354
}
24802355
]
24812356
},
2482-
"matchPackagePatterns": {
2483-
"description": "Package name patterns to match. Valid only within a `packageRules` object.",
2484-
"oneOf": [
2485-
{
2486-
"type": "array",
2487-
"items": {
2488-
"type": "string",
2489-
"format": "regex"
2490-
}
2491-
},
2492-
{
2493-
"type": "string",
2494-
"format": "regex"
2495-
}
2496-
]
2497-
},
2498-
"matchPackagePrefixes": {
2499-
"description": "Package name prefixes to match. Valid only within a `packageRules` object.",
2500-
"oneOf": [
2501-
{
2502-
"type": "array",
2503-
"items": {
2504-
"type": "string"
2505-
}
2506-
},
2507-
{
2508-
"type": "string"
2509-
}
2510-
]
2511-
},
25122357
"matchRepositories": {
25132358
"description": "List of repositories to match (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.",
25142359
"oneOf": [
@@ -2523,20 +2368,6 @@
25232368
}
25242369
]
25252370
},
2526-
"matchSourceUrlPrefixes": {
2527-
"description": "A list of source URL prefixes to match against, commonly used to group monorepos or packages from the same organization.",
2528-
"oneOf": [
2529-
{
2530-
"type": "array",
2531-
"items": {
2532-
"type": "string"
2533-
}
2534-
},
2535-
{
2536-
"type": "string"
2537-
}
2538-
]
2539-
},
25402371
"matchSourceUrls": {
25412372
"description": "A list of source URLs to exact match against.",
25422373
"oneOf": [
@@ -2745,8 +2576,13 @@
27452576
},
27462577
"platformCommit": {
27472578
"description": "Use platform API to perform commits instead of using Git directly.",
2748-
"type": "boolean",
2749-
"default": false
2579+
"type": "string",
2580+
"enum": [
2581+
"auto",
2582+
"disabled",
2583+
"enabled"
2584+
],
2585+
"default": "auto"
27502586
},
27512587
"poetry": {
27522588
"description": "Configuration object for the poetry manager",
@@ -3462,11 +3298,6 @@
34623298
"description": "Repository Auth Token.",
34633299
"type": "string"
34643300
},
3465-
"transitiveRemediation": {
3466-
"description": "Enable remediation of transitive dependencies.",
3467-
"type": "boolean",
3468-
"default": false
3469-
},
34703301
"travis": {
34713302
"description": "Configuration object for the travis manager",
34723303
"type": "object",
@@ -3629,7 +3460,7 @@
36293460
"minimumReleaseAge": null,
36303461
"rangeStrategy": "update-lockfile",
36313462
"commitMessageSuffix": "[SECURITY]",
3632-
"branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability",
3463+
"branchTopic": "{{{datasource}}}-{{{depNameSanitized}}}-vulnerability",
36333464
"prCreation": "immediate"
36343465
},
36353466
"$ref": "#"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29e0b659974db82ea19e8a5ba137e3bd008a14eee733bc0bd633ce261e208dc9
1+
2bee746ffdc65ae0688e717dff660c9ea74a11e5b458ecc25fddcf8c9e16602a
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4100bea98ee657c788cdde5ef2ad7eeb769ccb6ee3aef9dd10228b397d3507f5
1+
ec3b66e92202f9e3a3812189922a6b3072757e582724210361d21130019514fe
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
909b82bf1b1a536f35bc4ea51a0dff4c1437d76bc8db78645b3a13d00cbd7e49
1+
29ef63757de94d0be7ed5988cc563f771e3cc712abc7ba6410598bad7ae6d0bc

0 commit comments

Comments
 (0)