@kungfu-tech/buildchain 3.0.2-alpha.1 → 3.0.2-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/actions/github-artifact-attestation/README.md +10 -0
- package/actions/promote-buildchain-ref/README.md +7 -0
- package/bin/buildchain.mjs +5 -0
- package/bin/internal/trust-release-cli.mjs +74 -3
- package/contracts/auditable-demo-media-profiles-v1.json +168 -0
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +103 -0
- package/contracts/fixtures/auditable-demo-web-delivery-v1/complete-transcript.txt +2 -0
- package/contracts/fixtures/auditable-demo-web-delivery-v1/public-projection.json +16 -0
- package/contracts/fixtures/auditable-demo-web-delivery-v1/scene.json +12 -0
- package/dist/site/artifact-schemas.json +5 -1
- package/dist/site/buildchain-contract.json +103 -34
- package/dist/site/buildchain-site.json +159 -40
- package/dist/site/capability-registry.json +13 -12
- package/dist/site/cli-registry.json +12 -0
- package/dist/site/controller-registry.json +48 -4
- package/dist/site/kfd-claims.json +320 -20
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +24 -9
- package/dist/site/node-api-registry.json +75 -10
- package/dist/site/page-registry.json +135 -25
- package/dist/site/public-surface-audit.json +197 -21
- package/dist/site/publication-authority-registry.json +72 -2
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-model.json +2 -1
- package/dist/site/release-passport-check-manifest.json +1 -0
- package/dist/site/release-provenance.json +5 -0
- package/dist/site/schemas/release-passport-v1.schema.json +6 -0
- package/dist/site/site-manifest.json +21 -13
- package/dist/site/workflow-registry.json +161 -13
- package/docs/MAP.md +5 -1
- package/docs/auditable-demo.md +55 -3
- package/docs/binary-distribution.md +7 -0
- package/docs/cli.md +9 -0
- package/docs/dev-alpha-candidate-patrol.md +111 -0
- package/docs/github-artifact-attestation.md +219 -0
- package/docs/release-governance.md +32 -0
- package/docs/release-passport.md +13 -0
- package/docs/reusable-build-surface.md +83 -61
- package/docs/runtime-train-validation.md +21 -0
- package/docs/versioning.md +1 -0
- package/package.json +7 -1
- package/packages/core/artifact-signing-result.js +228 -0
- package/packages/core/artifact-signing.js +412 -0
- package/packages/core/buildchain-config.js +58 -0
- package/packages/core/buildchain-contract.js +14 -0
- package/packages/core/buildchain-kfd-claims.js +5 -0
- package/packages/core/buildchain-publication-authority.js +3 -0
- package/packages/core/channel-candidate.js +186 -0
- package/packages/core/detached-artifact-signature.js +121 -0
- package/packages/core/github-artifact-attestation.js +642 -0
- package/packages/core/github-governance-authority.js +6 -0
- package/packages/core/index.js +52 -0
- package/packages/core/publication-authority.js +1 -1
- package/packages/core/release-passport-contract.js +2 -0
- package/packages/core/release-passport.js +60 -3
- package/scripts/auditable-demo.mjs +520 -28
- package/scripts/build-contract-core.mjs +31 -0
- package/scripts/buildchain-channel-router.mjs +8 -2
- package/scripts/check-inventory.mjs +9 -0
- package/scripts/create-github-artifact-attestation-policy.mjs +62 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +864 -0
- package/scripts/dispatch-artifact-signing-authority.mjs +152 -0
- package/scripts/finalize-native-artifact-signing-result.mjs +96 -0
- package/scripts/generate-channel-promotion-workflow.mjs +6 -0
- package/scripts/generate-site-bundle.mjs +19 -0
- package/scripts/import-artifact-signing-results.mjs +76 -0
- package/scripts/inspect-artifact-signing-requests.mjs +101 -0
- package/scripts/materialize-artifact-signing-request.mjs +66 -0
- package/scripts/merge-artifact-signing-results.mjs +76 -0
- package/scripts/publish-github-artifact-attestation-evidence.mjs +201 -0
- package/scripts/release-candidate-resolver.mjs +12 -0
- package/scripts/release-line-policy.mjs +27 -0
- package/scripts/runtime-ref-core.mjs +10 -6
- package/scripts/seal-artifact-signing-requests.mjs +368 -0
- package/scripts/sign-detached-artifact-requests.mjs +237 -0
- package/scripts/stage-github-artifact-attestation-inputs.mjs +65 -0
- package/scripts/verify-artifact-signing-results.mjs +99 -0
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:9770baa99ba374e9dbd743ca9624a72137513b8c4e65af1fbf2160cb3ef51d9d",
|
|
18
18
|
"majorLine": "v3"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "5d48015039ed4e6885acc9a0057d492f48e0b8b31b853a482af41ebae525d801",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
28
|
-
"actionCount":
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
26
|
+
"cliCommandCount": 97,
|
|
27
|
+
"workflowCount": 57,
|
|
28
|
+
"actionCount": 6,
|
|
29
|
+
"sitePageCount": 59,
|
|
30
|
+
"docCommandRefCount": 291,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -228,13 +228,13 @@
|
|
|
228
228
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
229
229
|
"path": "dist/site/public-surface-audit.json",
|
|
230
230
|
"status": "passed",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "5d48015039ed4e6885acc9a0057d492f48e0b8b31b853a482af41ebae525d801",
|
|
232
232
|
"summary": {
|
|
233
|
-
"cliCommandCount":
|
|
234
|
-
"workflowCount":
|
|
235
|
-
"actionCount":
|
|
236
|
-
"sitePageCount":
|
|
237
|
-
"docCommandRefCount":
|
|
233
|
+
"cliCommandCount": 97,
|
|
234
|
+
"workflowCount": 57,
|
|
235
|
+
"actionCount": 6,
|
|
236
|
+
"sitePageCount": 59,
|
|
237
|
+
"docCommandRefCount": 291,
|
|
238
238
|
"failureCount": 0
|
|
239
239
|
},
|
|
240
240
|
"auditBoundary": {
|
|
@@ -260,6 +260,18 @@
|
|
|
260
260
|
"public": true,
|
|
261
261
|
"plane": "use"
|
|
262
262
|
},
|
|
263
|
+
{
|
|
264
|
+
"id": "doc:actions/github-artifact-attestation/README.md",
|
|
265
|
+
"name": "actions/github-artifact-attestation/README.md",
|
|
266
|
+
"kind": "documentation",
|
|
267
|
+
"sourcePath": "actions/github-artifact-attestation/README.md",
|
|
268
|
+
"evidencePath": "actions/github-artifact-attestation/README.md",
|
|
269
|
+
"availability": "shipped",
|
|
270
|
+
"visibility": "public",
|
|
271
|
+
"participantFacing": true,
|
|
272
|
+
"public": true,
|
|
273
|
+
"plane": "action"
|
|
274
|
+
},
|
|
263
275
|
{
|
|
264
276
|
"id": "doc:actions/macos-credential-island/README.md",
|
|
265
277
|
"name": "actions/macos-credential-island/README.md",
|
|
@@ -404,6 +416,18 @@
|
|
|
404
416
|
"public": true,
|
|
405
417
|
"plane": "verify"
|
|
406
418
|
},
|
|
419
|
+
{
|
|
420
|
+
"id": "doc:docs/github-artifact-attestation.md",
|
|
421
|
+
"name": "GitHub-native Linux artifact attestation",
|
|
422
|
+
"kind": "documentation",
|
|
423
|
+
"sourcePath": "docs/github-artifact-attestation.md",
|
|
424
|
+
"evidencePath": "docs/github-artifact-attestation.md",
|
|
425
|
+
"availability": "shipped",
|
|
426
|
+
"visibility": "public",
|
|
427
|
+
"participantFacing": true,
|
|
428
|
+
"public": true,
|
|
429
|
+
"plane": "verify"
|
|
430
|
+
},
|
|
407
431
|
{
|
|
408
432
|
"id": "doc:docs/github-governance-authority.md",
|
|
409
433
|
"name": "GitHub governance authority",
|
|
@@ -872,6 +896,17 @@
|
|
|
872
896
|
"participantFacing": true,
|
|
873
897
|
"public": true
|
|
874
898
|
},
|
|
899
|
+
{
|
|
900
|
+
"id": "schema:packages/core/github-artifact-attestation.js",
|
|
901
|
+
"name": "schema:packages/core/github-artifact-attestation.js",
|
|
902
|
+
"kind": "schema",
|
|
903
|
+
"sourcePath": "packages/core/github-artifact-attestation.js",
|
|
904
|
+
"evidencePath": "packages/core/github-artifact-attestation.js",
|
|
905
|
+
"availability": "shipped",
|
|
906
|
+
"visibility": "public",
|
|
907
|
+
"participantFacing": true,
|
|
908
|
+
"public": true
|
|
909
|
+
},
|
|
875
910
|
{
|
|
876
911
|
"id": "schema:packages/core/buildchain-contract.js",
|
|
877
912
|
"name": "schema:packages/core/buildchain-contract.js",
|
|
@@ -1113,6 +1148,54 @@
|
|
|
1113
1148
|
"public": true,
|
|
1114
1149
|
"packageExport": "./artifact-verification-envelope"
|
|
1115
1150
|
},
|
|
1151
|
+
{
|
|
1152
|
+
"id": "export:./github-artifact-attestation",
|
|
1153
|
+
"name": "@kungfu-tech/buildchain/github-artifact-attestation",
|
|
1154
|
+
"kind": "package-export",
|
|
1155
|
+
"sourcePath": "packages/core/github-artifact-attestation.js",
|
|
1156
|
+
"evidencePath": "packages/core/github-artifact-attestation.js",
|
|
1157
|
+
"availability": "shipped",
|
|
1158
|
+
"visibility": "public",
|
|
1159
|
+
"participantFacing": true,
|
|
1160
|
+
"public": true,
|
|
1161
|
+
"packageExport": "./github-artifact-attestation"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"id": "export:./artifact-signing",
|
|
1165
|
+
"name": "@kungfu-tech/buildchain/artifact-signing",
|
|
1166
|
+
"kind": "package-export",
|
|
1167
|
+
"sourcePath": "packages/core/artifact-signing.js",
|
|
1168
|
+
"evidencePath": "packages/core/artifact-signing.js",
|
|
1169
|
+
"availability": "shipped",
|
|
1170
|
+
"visibility": "public",
|
|
1171
|
+
"participantFacing": true,
|
|
1172
|
+
"public": true,
|
|
1173
|
+
"packageExport": "./artifact-signing"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"id": "export:./artifact-signing-result",
|
|
1177
|
+
"name": "@kungfu-tech/buildchain/artifact-signing-result",
|
|
1178
|
+
"kind": "package-export",
|
|
1179
|
+
"sourcePath": "packages/core/artifact-signing-result.js",
|
|
1180
|
+
"evidencePath": "packages/core/artifact-signing-result.js",
|
|
1181
|
+
"availability": "shipped",
|
|
1182
|
+
"visibility": "public",
|
|
1183
|
+
"participantFacing": true,
|
|
1184
|
+
"public": true,
|
|
1185
|
+
"packageExport": "./artifact-signing-result"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"id": "export:./detached-artifact-signature",
|
|
1189
|
+
"name": "@kungfu-tech/buildchain/detached-artifact-signature",
|
|
1190
|
+
"kind": "package-export",
|
|
1191
|
+
"sourcePath": "packages/core/detached-artifact-signature.js",
|
|
1192
|
+
"evidencePath": "packages/core/detached-artifact-signature.js",
|
|
1193
|
+
"availability": "shipped",
|
|
1194
|
+
"visibility": "public",
|
|
1195
|
+
"participantFacing": true,
|
|
1196
|
+
"public": true,
|
|
1197
|
+
"packageExport": "./detached-artifact-signature"
|
|
1198
|
+
},
|
|
1116
1199
|
{
|
|
1117
1200
|
"id": "export:./anchored-version-material",
|
|
1118
1201
|
"name": "@kungfu-tech/buildchain/anchored-version-material",
|
|
@@ -1149,6 +1232,18 @@
|
|
|
1149
1232
|
"public": true,
|
|
1150
1233
|
"packageExport": "./candidate-timeline"
|
|
1151
1234
|
},
|
|
1235
|
+
{
|
|
1236
|
+
"id": "export:./channel-candidate",
|
|
1237
|
+
"name": "@kungfu-tech/buildchain/channel-candidate",
|
|
1238
|
+
"kind": "package-export",
|
|
1239
|
+
"sourcePath": "packages/core/channel-candidate.js",
|
|
1240
|
+
"evidencePath": "packages/core/channel-candidate.js",
|
|
1241
|
+
"availability": "shipped",
|
|
1242
|
+
"visibility": "public",
|
|
1243
|
+
"participantFacing": true,
|
|
1244
|
+
"public": true,
|
|
1245
|
+
"packageExport": "./channel-candidate"
|
|
1246
|
+
},
|
|
1152
1247
|
{
|
|
1153
1248
|
"id": "export:./cache-evidence",
|
|
1154
1249
|
"name": "@kungfu-tech/buildchain/cache-evidence",
|
|
@@ -2801,6 +2896,18 @@
|
|
|
2801
2896
|
"public": true,
|
|
2802
2897
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2803
2898
|
},
|
|
2899
|
+
{
|
|
2900
|
+
"id": "cli:verify-github-artifact-attestation",
|
|
2901
|
+
"name": "buildchain verify github-artifact-attestation <artifact>",
|
|
2902
|
+
"kind": "cli-command",
|
|
2903
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2904
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2905
|
+
"availability": "shipped",
|
|
2906
|
+
"visibility": "public",
|
|
2907
|
+
"participantFacing": true,
|
|
2908
|
+
"public": true,
|
|
2909
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2910
|
+
},
|
|
2804
2911
|
{
|
|
2805
2912
|
"id": "cli:verify-infra-contract-evidence-bundle",
|
|
2806
2913
|
"name": "buildchain verify infra-contract-evidence-bundle <file> [--json]",
|
|
@@ -2883,11 +2990,12 @@
|
|
|
2883
2990
|
"visibility": "public",
|
|
2884
2991
|
"participantFacing": true,
|
|
2885
2992
|
"public": true,
|
|
2886
|
-
"inputCount":
|
|
2993
|
+
"inputCount": 10,
|
|
2887
2994
|
"inputs": [
|
|
2888
2995
|
"adapter-path",
|
|
2889
2996
|
"artifact-retention-days",
|
|
2890
2997
|
"buildchain-repository",
|
|
2998
|
+
"media-profile",
|
|
2891
2999
|
"render-media",
|
|
2892
3000
|
"renderer-image",
|
|
2893
3001
|
"require-trusted-event",
|
|
@@ -2937,7 +3045,7 @@
|
|
|
2937
3045
|
"visibility": "public",
|
|
2938
3046
|
"participantFacing": true,
|
|
2939
3047
|
"public": true,
|
|
2940
|
-
"inputCount":
|
|
3048
|
+
"inputCount": 72,
|
|
2941
3049
|
"inputs": [
|
|
2942
3050
|
"artifact-name",
|
|
2943
3051
|
"artifact-name-template",
|
|
@@ -2976,6 +3084,9 @@
|
|
|
2976
3084
|
"expected-artifacts-json",
|
|
2977
3085
|
"fail-fast",
|
|
2978
3086
|
"gate-profile-aggregate-json",
|
|
3087
|
+
"github-artifact-attestation-platform-id",
|
|
3088
|
+
"github-artifact-attestation-signer-sha",
|
|
3089
|
+
"github-artifact-attestation-subject-path",
|
|
2979
3090
|
"install-command",
|
|
2980
3091
|
"kfd-agent-hub",
|
|
2981
3092
|
"lifecycle-timeout-minutes",
|
|
@@ -3128,7 +3239,7 @@
|
|
|
3128
3239
|
"visibility": "public",
|
|
3129
3240
|
"participantFacing": true,
|
|
3130
3241
|
"public": true,
|
|
3131
|
-
"inputCount":
|
|
3242
|
+
"inputCount": 88,
|
|
3132
3243
|
"inputs": [
|
|
3133
3244
|
"allow-repository",
|
|
3134
3245
|
"artifact-name",
|
|
@@ -3143,6 +3254,9 @@
|
|
|
3143
3254
|
"buildchain-repository",
|
|
3144
3255
|
"channel",
|
|
3145
3256
|
"dry-run",
|
|
3257
|
+
"github-artifact-attestation-environment",
|
|
3258
|
+
"github-artifact-attestation-policy-json",
|
|
3259
|
+
"github-artifact-attestation-retention-days",
|
|
3146
3260
|
"github-governance-receipt-json",
|
|
3147
3261
|
"github-release",
|
|
3148
3262
|
"github-release-notes",
|
|
@@ -3529,6 +3643,34 @@
|
|
|
3529
3643
|
],
|
|
3530
3644
|
"reverseAuditSource": ".github/workflows"
|
|
3531
3645
|
},
|
|
3646
|
+
{
|
|
3647
|
+
"id": "workflow:artifact-signing-authority",
|
|
3648
|
+
"name": "workflow:artifact-signing-authority",
|
|
3649
|
+
"kind": "workflow",
|
|
3650
|
+
"sourcePath": ".github/workflows/artifact-signing-authority.yml",
|
|
3651
|
+
"evidencePath": ".github/workflows/artifact-signing-authority.yml",
|
|
3652
|
+
"availability": "shipped",
|
|
3653
|
+
"visibility": "public",
|
|
3654
|
+
"participantFacing": true,
|
|
3655
|
+
"public": true,
|
|
3656
|
+
"inputCount": 0,
|
|
3657
|
+
"inputs": [],
|
|
3658
|
+
"reverseAuditSource": ".github/workflows"
|
|
3659
|
+
},
|
|
3660
|
+
{
|
|
3661
|
+
"id": "workflow:auditable-demo-media-profile-qualification",
|
|
3662
|
+
"name": "workflow:auditable-demo-media-profile-qualification",
|
|
3663
|
+
"kind": "workflow",
|
|
3664
|
+
"sourcePath": ".github/workflows/auditable-demo-media-profile-qualification.yml",
|
|
3665
|
+
"evidencePath": ".github/workflows/auditable-demo-media-profile-qualification.yml",
|
|
3666
|
+
"availability": "shipped",
|
|
3667
|
+
"visibility": "public",
|
|
3668
|
+
"participantFacing": true,
|
|
3669
|
+
"public": true,
|
|
3670
|
+
"inputCount": 0,
|
|
3671
|
+
"inputs": [],
|
|
3672
|
+
"reverseAuditSource": ".github/workflows"
|
|
3673
|
+
},
|
|
3532
3674
|
{
|
|
3533
3675
|
"id": "workflow:binary-distribution",
|
|
3534
3676
|
"name": "workflow:binary-distribution",
|
|
@@ -3581,7 +3723,7 @@
|
|
|
3581
3723
|
"visibility": "public",
|
|
3582
3724
|
"participantFacing": true,
|
|
3583
3725
|
"public": true,
|
|
3584
|
-
"inputCount":
|
|
3726
|
+
"inputCount": 75,
|
|
3585
3727
|
"inputs": [
|
|
3586
3728
|
"artifact-name",
|
|
3587
3729
|
"artifact-name-template",
|
|
@@ -3623,6 +3765,9 @@
|
|
|
3623
3765
|
"expected-artifacts-json",
|
|
3624
3766
|
"fail-fast",
|
|
3625
3767
|
"gate-profile-aggregate-json",
|
|
3768
|
+
"github-artifact-attestation-platform-id",
|
|
3769
|
+
"github-artifact-attestation-signer-sha",
|
|
3770
|
+
"github-artifact-attestation-subject-path",
|
|
3626
3771
|
"install-command",
|
|
3627
3772
|
"kfd-agent-hub",
|
|
3628
3773
|
"lifecycle-timeout-minutes",
|
|
@@ -3823,6 +3968,32 @@
|
|
|
3823
3968
|
],
|
|
3824
3969
|
"reverseAuditSource": ".github/workflows"
|
|
3825
3970
|
},
|
|
3971
|
+
{
|
|
3972
|
+
"id": "workflow:dev-alpha-candidate-patrol",
|
|
3973
|
+
"name": "workflow:dev-alpha-candidate-patrol",
|
|
3974
|
+
"kind": "workflow",
|
|
3975
|
+
"sourcePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
3976
|
+
"evidencePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
3977
|
+
"availability": "shipped",
|
|
3978
|
+
"visibility": "public",
|
|
3979
|
+
"participantFacing": true,
|
|
3980
|
+
"public": true,
|
|
3981
|
+
"inputCount": 11,
|
|
3982
|
+
"inputs": [
|
|
3983
|
+
"alpha-workflow-path",
|
|
3984
|
+
"buildchain-ref",
|
|
3985
|
+
"buildchain-repository",
|
|
3986
|
+
"create-pull-request",
|
|
3987
|
+
"dev-workflow-path",
|
|
3988
|
+
"dry-run",
|
|
3989
|
+
"max-age-seconds",
|
|
3990
|
+
"pull-request-body-prefix",
|
|
3991
|
+
"settlement-authorized",
|
|
3992
|
+
"source-branch",
|
|
3993
|
+
"target-branch"
|
|
3994
|
+
],
|
|
3995
|
+
"reverseAuditSource": ".github/workflows"
|
|
3996
|
+
},
|
|
3826
3997
|
{
|
|
3827
3998
|
"id": "workflow:dev-merge-queue-governance",
|
|
3828
3999
|
"name": "workflow:dev-merge-queue-governance",
|
|
@@ -3865,6 +4036,34 @@
|
|
|
3865
4036
|
],
|
|
3866
4037
|
"reverseAuditSource": ".github/workflows"
|
|
3867
4038
|
},
|
|
4039
|
+
{
|
|
4040
|
+
"id": "workflow:github-artifact-attestation",
|
|
4041
|
+
"name": "workflow:github-artifact-attestation",
|
|
4042
|
+
"kind": "workflow",
|
|
4043
|
+
"sourcePath": ".github/workflows/github-artifact-attestation.yml",
|
|
4044
|
+
"evidencePath": ".github/workflows/github-artifact-attestation.yml",
|
|
4045
|
+
"availability": "shipped",
|
|
4046
|
+
"visibility": "public",
|
|
4047
|
+
"participantFacing": true,
|
|
4048
|
+
"public": true,
|
|
4049
|
+
"inputCount": 13,
|
|
4050
|
+
"inputs": [
|
|
4051
|
+
"buildchain-ref",
|
|
4052
|
+
"environment",
|
|
4053
|
+
"evidence-artifact-name",
|
|
4054
|
+
"evidence-run-id",
|
|
4055
|
+
"platform-manifest-artifact-name",
|
|
4056
|
+
"platform-manifest-relative-path",
|
|
4057
|
+
"policy-json",
|
|
4058
|
+
"release-passport-artifact-name",
|
|
4059
|
+
"release-passport-relative-path",
|
|
4060
|
+
"retention-days",
|
|
4061
|
+
"source-sha",
|
|
4062
|
+
"subject-artifact-name",
|
|
4063
|
+
"subject-relative-path"
|
|
4064
|
+
],
|
|
4065
|
+
"reverseAuditSource": ".github/workflows"
|
|
4066
|
+
},
|
|
3868
4067
|
{
|
|
3869
4068
|
"id": "workflow:github-governance-audit",
|
|
3870
4069
|
"name": "workflow:github-governance-audit",
|
|
@@ -4126,7 +4325,7 @@
|
|
|
4126
4325
|
"visibility": "public",
|
|
4127
4326
|
"participantFacing": true,
|
|
4128
4327
|
"public": true,
|
|
4129
|
-
"inputCount":
|
|
4328
|
+
"inputCount": 80,
|
|
4130
4329
|
"inputs": [
|
|
4131
4330
|
"allow-repository",
|
|
4132
4331
|
"artifact-name",
|
|
@@ -4144,6 +4343,9 @@
|
|
|
4144
4343
|
"buildchain-stable-contract-lock-path",
|
|
4145
4344
|
"channel",
|
|
4146
4345
|
"dry-run",
|
|
4346
|
+
"github-artifact-attestation-environment",
|
|
4347
|
+
"github-artifact-attestation-policy-json",
|
|
4348
|
+
"github-artifact-attestation-retention-days",
|
|
4147
4349
|
"github-governance-receipt-json",
|
|
4148
4350
|
"github-release",
|
|
4149
4351
|
"github-release-notes",
|
|
@@ -4372,6 +4574,34 @@
|
|
|
4372
4574
|
"inputs": [],
|
|
4373
4575
|
"reverseAuditSource": ".github/workflows"
|
|
4374
4576
|
},
|
|
4577
|
+
{
|
|
4578
|
+
"id": "action:github-artifact-attestation",
|
|
4579
|
+
"name": "action:github-artifact-attestation",
|
|
4580
|
+
"kind": "action",
|
|
4581
|
+
"sourcePath": "actions/github-artifact-attestation/action.yml",
|
|
4582
|
+
"evidencePath": "actions/github-artifact-attestation/action.yml",
|
|
4583
|
+
"availability": "shipped",
|
|
4584
|
+
"visibility": "public",
|
|
4585
|
+
"participantFacing": true,
|
|
4586
|
+
"public": true,
|
|
4587
|
+
"inputCount": 13,
|
|
4588
|
+
"inputs": [
|
|
4589
|
+
"attestation-id",
|
|
4590
|
+
"attestation-url",
|
|
4591
|
+
"bundle-path",
|
|
4592
|
+
"expected-buildchain-ref",
|
|
4593
|
+
"expected-caller-repository",
|
|
4594
|
+
"expected-source-sha",
|
|
4595
|
+
"mode",
|
|
4596
|
+
"output-dir",
|
|
4597
|
+
"platform-manifest-path",
|
|
4598
|
+
"policy-json",
|
|
4599
|
+
"preparation-json",
|
|
4600
|
+
"release-passport-path",
|
|
4601
|
+
"subject-path"
|
|
4602
|
+
],
|
|
4603
|
+
"reverseAuditSource": "actions/*/action.yml"
|
|
4604
|
+
},
|
|
4375
4605
|
{
|
|
4376
4606
|
"id": "action:macos-credential-island",
|
|
4377
4607
|
"name": "action:macos-credential-island",
|
|
@@ -4417,7 +4647,7 @@
|
|
|
4417
4647
|
"visibility": "public",
|
|
4418
4648
|
"participantFacing": true,
|
|
4419
4649
|
"public": true,
|
|
4420
|
-
"inputCount":
|
|
4650
|
+
"inputCount": 67,
|
|
4421
4651
|
"inputs": [
|
|
4422
4652
|
"allow-repository",
|
|
4423
4653
|
"branch-protection-bypass-apps",
|
|
@@ -4460,6 +4690,7 @@
|
|
|
4460
4690
|
"release-passport",
|
|
4461
4691
|
"release-passport-build-summary-path",
|
|
4462
4692
|
"release-passport-buildchain-self-kfd",
|
|
4693
|
+
"release-passport-github-artifact-attestation-policy-jsons",
|
|
4463
4694
|
"release-passport-impact-json",
|
|
4464
4695
|
"release-passport-invariant-passport-command",
|
|
4465
4696
|
"release-passport-invariant-passport-jsons",
|
|
@@ -4600,6 +4831,18 @@
|
|
|
4600
4831
|
],
|
|
4601
4832
|
"reverseAuditSource": "actions/*/action.yml"
|
|
4602
4833
|
},
|
|
4834
|
+
{
|
|
4835
|
+
"id": "site-page:action:github-artifact-attestation",
|
|
4836
|
+
"name": "site-page:action:github-artifact-attestation",
|
|
4837
|
+
"kind": "site-page",
|
|
4838
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
4839
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
4840
|
+
"availability": "shipped",
|
|
4841
|
+
"visibility": "public",
|
|
4842
|
+
"participantFacing": true,
|
|
4843
|
+
"public": true,
|
|
4844
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4845
|
+
},
|
|
4603
4846
|
{
|
|
4604
4847
|
"id": "site-page:action:macos-credential-island",
|
|
4605
4848
|
"name": "site-page:action:macos-credential-island",
|
|
@@ -4900,6 +5143,30 @@
|
|
|
4900
5143
|
"public": true,
|
|
4901
5144
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4902
5145
|
},
|
|
5146
|
+
{
|
|
5147
|
+
"id": "site-page:manual:dev-alpha-candidate-patrol",
|
|
5148
|
+
"name": "site-page:manual:dev-alpha-candidate-patrol",
|
|
5149
|
+
"kind": "site-page",
|
|
5150
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5151
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5152
|
+
"availability": "shipped",
|
|
5153
|
+
"visibility": "public",
|
|
5154
|
+
"participantFacing": true,
|
|
5155
|
+
"public": true,
|
|
5156
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5157
|
+
},
|
|
5158
|
+
{
|
|
5159
|
+
"id": "site-page:manual:github-artifact-attestation",
|
|
5160
|
+
"name": "site-page:manual:github-artifact-attestation",
|
|
5161
|
+
"kind": "site-page",
|
|
5162
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5163
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5164
|
+
"availability": "shipped",
|
|
5165
|
+
"visibility": "public",
|
|
5166
|
+
"participantFacing": true,
|
|
5167
|
+
"public": true,
|
|
5168
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5169
|
+
},
|
|
4903
5170
|
{
|
|
4904
5171
|
"id": "site-page:manual:github-governance-authority",
|
|
4905
5172
|
"name": "site-page:manual:github-governance-authority",
|
|
@@ -5319,6 +5586,39 @@
|
|
|
5319
5586
|
"participantFacing": true,
|
|
5320
5587
|
"public": true
|
|
5321
5588
|
},
|
|
5589
|
+
{
|
|
5590
|
+
"id": "control:.github/workflows/github-artifact-attestation.yml",
|
|
5591
|
+
"name": "control:.github/workflows/github-artifact-attestation.yml",
|
|
5592
|
+
"kind": "workflow",
|
|
5593
|
+
"sourcePath": ".github/workflows/github-artifact-attestation.yml",
|
|
5594
|
+
"evidencePath": ".github/workflows/github-artifact-attestation.yml",
|
|
5595
|
+
"availability": "shipped",
|
|
5596
|
+
"visibility": "public",
|
|
5597
|
+
"participantFacing": true,
|
|
5598
|
+
"public": true
|
|
5599
|
+
},
|
|
5600
|
+
{
|
|
5601
|
+
"id": "control:actions/github-artifact-attestation/action.yml",
|
|
5602
|
+
"name": "control:actions/github-artifact-attestation/action.yml",
|
|
5603
|
+
"kind": "action",
|
|
5604
|
+
"sourcePath": "actions/github-artifact-attestation/action.yml",
|
|
5605
|
+
"evidencePath": "actions/github-artifact-attestation/action.yml",
|
|
5606
|
+
"availability": "shipped",
|
|
5607
|
+
"visibility": "public",
|
|
5608
|
+
"participantFacing": true,
|
|
5609
|
+
"public": true
|
|
5610
|
+
},
|
|
5611
|
+
{
|
|
5612
|
+
"id": "control:actions/github-artifact-attestation/index.js",
|
|
5613
|
+
"name": "control:actions/github-artifact-attestation/index.js",
|
|
5614
|
+
"kind": "action",
|
|
5615
|
+
"sourcePath": "actions/github-artifact-attestation/index.js",
|
|
5616
|
+
"evidencePath": "actions/github-artifact-attestation/index.js",
|
|
5617
|
+
"availability": "shipped",
|
|
5618
|
+
"visibility": "public",
|
|
5619
|
+
"participantFacing": true,
|
|
5620
|
+
"public": true
|
|
5621
|
+
},
|
|
5322
5622
|
{
|
|
5323
5623
|
"id": "control:.github/workflows/release-propagation.yml",
|
|
5324
5624
|
"name": "control:.github/workflows/release-propagation.yml",
|
|
@@ -5410,6 +5710,6 @@
|
|
|
5410
5710
|
}
|
|
5411
5711
|
}
|
|
5412
5712
|
],
|
|
5413
|
-
"publicSurfaceCount":
|
|
5713
|
+
"publicSurfaceCount": 365
|
|
5414
5714
|
}
|
|
5415
5715
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Buildchain documentation map",
|
|
10
10
|
"path": "docs/MAP.md",
|
|
11
11
|
"plane": "use",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:cc32692e8d04816e8de94f208e43c2d5c5c7a8425cec8b32edc73ab78591fbbf",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"title": "Auditable demo artifact pipeline",
|
|
24
24
|
"path": "docs/auditable-demo.md",
|
|
25
25
|
"plane": "verify",
|
|
26
|
-
"digest": "sha256:
|
|
26
|
+
"digest": "sha256:0e8cf2162c2e1f83cfe3a6171e3055f494cab5f03fdcbec3854e1793678e6908",
|
|
27
27
|
"capabilityGroup": "reusable-build",
|
|
28
28
|
"audience": [
|
|
29
29
|
"consumer",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"title": "Release Passport protocol",
|
|
51
51
|
"path": "docs/release-passport.md",
|
|
52
52
|
"plane": "verify",
|
|
53
|
-
"digest": "sha256:
|
|
53
|
+
"digest": "sha256:d698078075700e60bafb9677bc4c35d49970136b98caaecfc51d38344285cdd5",
|
|
54
54
|
"capabilityGroup": "release-passport-trust",
|
|
55
55
|
"audience": [
|
|
56
56
|
"release-operator",
|
|
@@ -59,6 +59,20 @@
|
|
|
59
59
|
"maturity": "stable",
|
|
60
60
|
"order": 100
|
|
61
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"id": "github-artifact-attestation",
|
|
64
|
+
"title": "GitHub-native Linux artifact attestation",
|
|
65
|
+
"path": "docs/github-artifact-attestation.md",
|
|
66
|
+
"plane": "verify",
|
|
67
|
+
"digest": "sha256:51f28b0b01fae4e3f80a7433f6c491d0c795bd091bff64ca1264c5cc0819c545",
|
|
68
|
+
"capabilityGroup": "release-passport-trust",
|
|
69
|
+
"audience": [
|
|
70
|
+
"release-operator",
|
|
71
|
+
"agent"
|
|
72
|
+
],
|
|
73
|
+
"maturity": "preview",
|
|
74
|
+
"order": 108
|
|
75
|
+
},
|
|
62
76
|
{
|
|
63
77
|
"id": "controller-evidence",
|
|
64
78
|
"title": "Controller evidence contract",
|
|
@@ -164,7 +178,7 @@
|
|
|
164
178
|
"title": "Binary distribution contract",
|
|
165
179
|
"path": "docs/binary-distribution.md",
|
|
166
180
|
"plane": "verify",
|
|
167
|
-
"digest": "sha256:
|
|
181
|
+
"digest": "sha256:b1611dcf0e6825e53921e4c9d31d1afe16fca81e6868360bfad1902587cd52ef",
|
|
168
182
|
"capabilityGroup": "release-passport-trust",
|
|
169
183
|
"audience": [
|
|
170
184
|
"release-operator",
|
|
@@ -275,7 +289,7 @@
|
|
|
275
289
|
"title": "CLI and npm package",
|
|
276
290
|
"path": "docs/cli.md",
|
|
277
291
|
"plane": "use",
|
|
278
|
-
"digest": "sha256:
|
|
292
|
+
"digest": "sha256:49da688f9f8b726a9169a3e4b246cb6ef07c6c626ea15c22f0b26ba1a37a58b4",
|
|
279
293
|
"capabilityGroup": "api-cli-reference",
|
|
280
294
|
"audience": [
|
|
281
295
|
"agent",
|
|
@@ -346,7 +360,7 @@
|
|
|
346
360
|
"title": "Reusable build surface",
|
|
347
361
|
"path": "docs/reusable-build-surface.md",
|
|
348
362
|
"plane": "use",
|
|
349
|
-
"digest": "sha256:
|
|
363
|
+
"digest": "sha256:ea36ec722f811f5156735aa7471ed080cdc7e87d71c20c300243b226e233e675",
|
|
350
364
|
"capabilityGroup": "reusable-build",
|
|
351
365
|
"audience": [
|
|
352
366
|
"consumer",
|
|
@@ -373,7 +387,7 @@
|
|
|
373
387
|
"title": "Release governance",
|
|
374
388
|
"path": "docs/release-governance.md",
|
|
375
389
|
"plane": "why",
|
|
376
|
-
"digest": "sha256:
|
|
390
|
+
"digest": "sha256:42a45f51db7ea11658431718835e1a430959db2a5cc80fc4651681502fe6fb7c",
|
|
377
391
|
"capabilityGroup": "governance-versioning",
|
|
378
392
|
"audience": [
|
|
379
393
|
"maintainer",
|
|
@@ -401,7 +415,7 @@
|
|
|
401
415
|
"title": "Runtime train validation",
|
|
402
416
|
"path": "docs/runtime-train-validation.md",
|
|
403
417
|
"plane": "verify",
|
|
404
|
-
"digest": "sha256:
|
|
418
|
+
"digest": "sha256:c9ebf451294f92a2be3aa2ac4b2ec7afb3cc17bbeae2ece7879b800c0f274a40",
|
|
405
419
|
"capabilityGroup": "governance-versioning",
|
|
406
420
|
"audience": [
|
|
407
421
|
"maintainer",
|
|
@@ -415,7 +429,7 @@
|
|
|
415
429
|
"title": "Versioning",
|
|
416
430
|
"path": "docs/versioning.md",
|
|
417
431
|
"plane": "why",
|
|
418
|
-
"digest": "sha256:
|
|
432
|
+
"digest": "sha256:4b40cb8675c111b7588297102a61cb241630f2b707a67a0384a6df7527b2c64c",
|
|
419
433
|
"capabilityGroup": "governance-versioning",
|
|
420
434
|
"audience": [
|
|
421
435
|
"maintainer"
|
|
@@ -447,6 +461,7 @@
|
|
|
447
461
|
"docs/reusable-build-surface.md",
|
|
448
462
|
"docs/release-candidate.md",
|
|
449
463
|
"docs/stable-candidate-patrol.md",
|
|
464
|
+
"docs/dev-alpha-candidate-patrol.md",
|
|
450
465
|
"docs/observed-evidence-patrol.md",
|
|
451
466
|
"docs/release-governance.md",
|
|
452
467
|
"docs/release-passport.md",
|