Skip to content

Commit 4f3cc6d

Browse files
sirosengithub-actions[bot]
authored andcommitted
[vendor-schemas] automated update
1 parent 34760a5 commit 4f3cc6d

File tree

11 files changed

+59
-11
lines changed

11 files changed

+59
-11
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Unreleased
1111
.. vendor-insert-here
1212
1313
- Update vendored schemas: bitbucket-pipelines, circle-ci, compose-spec, dependabot,
14-
github-workflows, gitlab-ci, mergify, readthedocs, renovate, woodpecker-ci
15-
(2025-05-18)
14+
github-workflows, gitlab-ci, mergify, readthedocs, renovate, travis, woodpecker-ci
15+
(2025-06-01)
1616
- Fix: support ``click==8.2.0``
1717
- Fix a bug in ``Last-Modified`` header parsing which used local time and could
1818
result in improper caching. Thanks :user:`fenuks`! (:pr:`565`)

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,6 +1567,33 @@
15671567
},
15681568
"additionalProperties": false
15691569
},
1570+
"outputs": {
1571+
"$comment": "https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onworkflow_calloutputs",
1572+
"description": "When using the workflow_call keyword, you can optionally specify inputs that are passed to the called workflow from the caller workflow.",
1573+
"type": "object",
1574+
"patternProperties": {
1575+
"^[_a-zA-Z][a-zA-Z0-9_-]*$": {
1576+
"$comment": "https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#outputsoutput_id",
1577+
"description": "A string identifier to associate with the output. The value of <output_id> is a map of the output's metadata. The <output_id> must be a unique identifier within the outputs object. The <output_id> must start with a letter or _ and contain only alphanumeric characters, -, or _.",
1578+
"type": "object",
1579+
"properties": {
1580+
"description": {
1581+
"$comment": "https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#outputsoutput_iddescription",
1582+
"description": "A string description of the output parameter.",
1583+
"type": "string"
1584+
},
1585+
"value": {
1586+
"$comment": "https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#outputsoutput_idvalue",
1587+
"description": "The value that the output parameter will be mapped to. You can set this to a string or an expression with context. For example, you can use the steps context to set the value of an output to the output value of a step.",
1588+
"type": "string"
1589+
}
1590+
},
1591+
"required": ["description", "value"],
1592+
"additionalProperties": false
1593+
}
1594+
},
1595+
"additionalProperties": false
1596+
},
15701597
"secrets": {
15711598
"$comment": "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_callsecrets",
15721599
"description": "A map of the secrets that can be used in the called workflow. Within the called workflow, you can use the secrets context to refer to a secret.",

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@
752752
"additionalProperties": false,
753753
"properties": {
754754
"user": {
755-
"type": "string",
755+
"type": ["string", "integer"],
756756
"minLength": 1,
757757
"maxLength": 255,
758758
"description": "Username or UID to use for the container. It also supports the UID:GID format."
@@ -846,7 +846,7 @@
846846
"additionalProperties": false,
847847
"properties": {
848848
"user": {
849-
"type": "string",
849+
"type": ["string", "integer"],
850850
"minLength": 1,
851851
"maxLength": 255,
852852
"description": "Username or UID to use for the container. It also supports the UID:GID format."

src/check_jsonschema/builtin_schemas/vendor/mergify.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@
16961696
"PR_DEQUEUED",
16971697
"PR_DEQUEUED_FROM_PARTITION",
16981698
"PR_AHEAD_DEQUEUED",
1699-
"PR_AHEAD_FAILED_TO_MERGE",
1699+
"BATCH_AHEAD_FAILED",
17001700
"PR_WITH_HIGHER_PRIORITY_QUEUED",
17011701
"PR_QUEUED_TWICE",
17021702
"SPECULATIVE_CHECK_NUMBER_REDUCED",

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
"$schema": "http://json-schema.org/draft-04/schema#",
44
"type": "object",
55
"properties": {
6+
"abandonmentThreshold": {
7+
"description": "Flags packages that have not been updated within this period as abandoned.",
8+
"type": [
9+
"string",
10+
"null"
11+
],
12+
"default": null
13+
},
614
"addLabels": {
715
"description": "Labels to add to Pull Request.",
816
"type": "array",
@@ -1047,6 +1055,11 @@
10471055
],
10481056
"default": "none"
10491057
},
1058+
"dependencyDashboardReportAbandonment": {
1059+
"description": "Controls whether abandoned packages are reported in the dependency dashboard.",
1060+
"type": "boolean",
1061+
"default": true
1062+
},
10501063
"dependencyDashboardTitle": {
10511064
"description": "Title for the Dependency Dashboard issue.",
10521065
"type": "string",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ed91988dbee827e8f305664e3c68c7ee9b1d7344708878596ffb05d7a815fea9
1+
66527684db3e01aabc2c3dee631f477500a304ba6dfa26748074afee65610767
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7dd1d799baca79aa7842f0d5c6d902ec59c33abfa438685cf4fb8728e11c5a3d
1+
10e9a42e805b622c5e73997396757ea6a444a0aeb4c1e16a02fbb69d880ab387
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0a3b9e017472207494a0ff45dddba64db25fc6c890f2f4886d1e113ae73455ff
1+
801cbf1e07f5e2dfc24822c355e7630a47f7b540ac7f348d498bac53c8880824
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1678cc33a2f1fb6f60157c437d10d07964b670873c1c4c9c39d432eebe9e26c4
1+
330ff16d2f91ab228170bf2be56056e490ffc489ca6415bf12f03625f7fee941
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
89c9ec99a48c5c2b630cea5d245697ff691221832017135ffca6248bc975bab0
1+
a5e036cdda492ed18c7b02e3749a35082f827a0b8c8360649dca1a1b9a1fa475

src/check_jsonschema/builtin_schemas/vendor/travis.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,15 @@
10351035
},
10361036
"dist": {
10371037
"description": "The Ubuntu distribution to use",
1038-
"enum": ["precise", "trusty", "xenial", "bionic", "focal", "jammy"]
1038+
"enum": [
1039+
"precise",
1040+
"trusty",
1041+
"xenial",
1042+
"bionic",
1043+
"focal",
1044+
"jammy",
1045+
"noble"
1046+
]
10391047
},
10401048
"sudo": {
10411049
"enum": [true, false, "", "required", "enabled"],

0 commit comments

Comments
 (0)