Skip to content

Commit a333525

Browse files
authored
Merge branch 'master' into spdx-schema_pull-latest
2 parents a6820fb + 435edce commit a333525

8 files changed

Lines changed: 21 additions & 17 deletions

File tree

.github/workflows/build_docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
# see https://github.com/actions/checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
- name: Set up JDK
2626
# see https://github.com/actions/setup-java
2727
uses: actions/setup-java@v5
@@ -33,7 +33,7 @@ jobs:
3333
run: ./gen.sh
3434
- name: Archive Schema documentation
3535
# https://github.com/actions/upload-artifact
36-
uses: actions/upload-artifact@v5
36+
uses: actions/upload-artifact@v6
3737
with:
3838
name: XML-Schema-documentation
3939
path: docgen/xml/docs
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
- name: Checkout
4848
# see https://github.com/actions/checkout
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
- name: Setup Python Environment
5151
# see https://github.com/actions/setup-python
5252
uses: actions/setup-python@v6
@@ -57,7 +57,7 @@ jobs:
5757
run: ./gen.sh
5858
- name: Archive Schema documentation
5959
# https://github.com/actions/upload-artifact
60-
uses: actions/upload-artifact@v5
60+
uses: actions/upload-artifact@v6
6161
with:
6262
name: JSON-Schema-documentation
6363
path: docgen/json/docs
@@ -70,12 +70,12 @@ jobs:
7070
steps:
7171
- name: Checkout
7272
# see https://github.com/actions/checkout
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
- name: Generate Schema documentation
7575
run: ./gen.sh
7676
- name: Archive Schema documentation
7777
# https://github.com/actions/upload-artifact
78-
uses: actions/upload-artifact@v5
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: PROTO-Schema-documentation
8181
path: docgen/proto/docs

.github/workflows/bundle_2.0_schemas.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: '20'
3030

.github/workflows/test_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
# see https://github.com/actions/checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Set up JDK
2828
# see https://github.com/actions/setup-java
2929
uses: actions/setup-java@v5

.github/workflows/test_js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Setup Node.js
3131
# see https://github.com/actions/setup-node
3232
uses: actions/setup-node@v6

.github/workflows/test_php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Setup PHP
3131
# see https://github.com/shivammathur/setup-php
3232
uses: shivammathur/setup-php@v2

.github/workflows/test_proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Run test
3131
run: ./test.sh

schema/bom-1.7.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@
981981
"versionRange": {
982982
"$ref": "#/definitions/versionRange",
983983
"title": "Component Version Range",
984-
"description": "For an external component, this specifies the accepted version range.\nThe value must adhere to the Package URL Version Range syntax (vers), as defined at <https://github.com/package-url/vers-spec\nMay only be used if `.isExternal` is set to `true`.\nMust be used exclusively, either 'version' or 'versionRange', but not both."
984+
"description": "For an external component, this specifies the accepted version range.\nThe value must adhere to the Package URL Version Range syntax (vers), as defined at https://github.com/package-url/vers-spec\nMay only be used if `.isExternal` is set to `true`.\nMust be used exclusively, either 'version' or 'versionRange', but not both."
985985
},
986986
"isExternal": {
987987
"type": "boolean",
@@ -1103,7 +1103,7 @@
11031103
"patches": {
11041104
"type": "array",
11051105
"title": "Patches",
1106-
"description": ">A list of zero or more patches describing how the component deviates from an ancestor, descendant, or variant. Patches may be complementary to commits or may be used in place of commits.",
1106+
"description": "A list of zero or more patches describing how the component deviates from an ancestor, descendant, or variant. Patches may be complementary to commits or may be used in place of commits.",
11071107
"items": {"$ref": "#/definitions/patch"}
11081108
},
11091109
"notes": {

schema/cryptography-defs.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,10 @@
468468
{
469469
"pattern": "ChaCha20-Poly1305",
470470
"primitive": "ae"
471+
},
472+
{
473+
"pattern": "XChaCha20-Poly1305",
474+
"primitive": "ae"
471475
}
472476
]
473477
},
@@ -1018,11 +1022,11 @@
10181022
],
10191023
"variant": [
10201024
{
1021-
"pattern": "TUAC[-MAC]",
1025+
"pattern": "TUAK[-MAC]",
10221026
"primitive": "mac"
10231027
},
10241028
{
1025-
"pattern": "TUAC[-KDF]",
1029+
"pattern": "TUAK[-KDF]",
10261030
"primitive": "kdf"
10271031
}
10281032
]
@@ -1407,7 +1411,7 @@
14071411
],
14081412
"variant": [
14091413
{
1410-
"pattern": "bcrypt[-{cost)]",
1414+
"pattern": "bcrypt[-{cost}]",
14111415
"primitive": "hash"
14121416
}
14131417
]

0 commit comments

Comments
 (0)