@kungfu-tech/buildchain 3.0.2-alpha.4 → 3.0.2-alpha.6
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 +1 -0
- 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/dist/site/artifact-schemas.json +5 -1
- package/dist/site/buildchain-contract.json +79 -28
- package/dist/site/buildchain-site.json +110 -27
- package/dist/site/capability-registry.json +8 -7
- package/dist/site/cli-registry.json +12 -0
- package/dist/site/controller-registry.json +40 -4
- package/dist/site/kfd-claims.json +205 -19
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +19 -5
- package/dist/site/node-api-registry.json +22 -9
- package/dist/site/page-registry.json +91 -17
- package/dist/site/public-surface-audit.json +132 -17
- package/dist/site/publication-authority-registry.json +27 -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 +1 -0
- package/dist/site/schemas/release-passport-v1.schema.json +6 -0
- package/dist/site/site-manifest.json +17 -9
- package/dist/site/workflow-registry.json +91 -9
- package/docs/MAP.md +3 -1
- package/docs/binary-distribution.md +7 -0
- package/docs/cli.md +9 -0
- package/docs/dev-alpha-candidate-patrol.md +51 -13
- package/docs/github-artifact-attestation.md +219 -0
- package/docs/release-passport.md +13 -0
- package/docs/reusable-build-surface.md +6 -0
- package/package.json +2 -1
- package/packages/core/buildchain-contract.js +6 -0
- package/packages/core/buildchain-kfd-claims.js +5 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/github-artifact-attestation.js +642 -0
- package/packages/core/index.js +19 -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/check-inventory.mjs +4 -0
- package/scripts/create-github-artifact-attestation-policy.mjs +62 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +471 -71
- package/scripts/generate-channel-promotion-workflow.mjs +6 -0
- package/scripts/generate-site-bundle.mjs +12 -0
- package/scripts/publish-github-artifact-attestation-evidence.mjs +201 -0
- package/scripts/release-candidate-resolver.mjs +12 -0
- package/scripts/stage-github-artifact-attestation-inputs.mjs +65 -0
|
@@ -47,15 +47,16 @@
|
|
|
47
47
|
],
|
|
48
48
|
"maturity": "stable",
|
|
49
49
|
"counts": {
|
|
50
|
-
"manualCount":
|
|
51
|
-
"pageCount":
|
|
52
|
-
"cliCommandCount":
|
|
53
|
-
"nodeApiCount":
|
|
54
|
-
"workflowCount":
|
|
55
|
-
"actionCount":
|
|
50
|
+
"manualCount": 5,
|
|
51
|
+
"pageCount": 5,
|
|
52
|
+
"cliCommandCount": 22,
|
|
53
|
+
"nodeApiCount": 9,
|
|
54
|
+
"workflowCount": 3,
|
|
55
|
+
"actionCount": 2
|
|
56
56
|
},
|
|
57
57
|
"manuals": [
|
|
58
58
|
"docs/release-passport.md",
|
|
59
|
+
"docs/github-artifact-attestation.md",
|
|
59
60
|
"docs/publication-authority.md",
|
|
60
61
|
"docs/binary-distribution.md",
|
|
61
62
|
"docs/publish-transaction.md"
|
|
@@ -287,7 +288,7 @@
|
|
|
287
288
|
"maturity": "stable",
|
|
288
289
|
"counts": {
|
|
289
290
|
"manualCount": 1,
|
|
290
|
-
"pageCount":
|
|
291
|
+
"pageCount": 8,
|
|
291
292
|
"cliCommandCount": 0,
|
|
292
293
|
"nodeApiCount": 2,
|
|
293
294
|
"workflowCount": 35,
|
|
@@ -1085,6 +1085,18 @@
|
|
|
1085
1085
|
],
|
|
1086
1086
|
"maturity": "stable"
|
|
1087
1087
|
},
|
|
1088
|
+
{
|
|
1089
|
+
"id": "verify-github-artifact-attestation",
|
|
1090
|
+
"source": "bin/buildchain.mjs",
|
|
1091
|
+
"usage": "buildchain verify github-artifact-attestation <artifact>",
|
|
1092
|
+
"purpose": "Verify GitHub keyless attestation identity plus local artifact, manifest, Passport, predicate, bundle, and evidence bindings.",
|
|
1093
|
+
"capabilityGroup": "release-passport-trust",
|
|
1094
|
+
"audience": [
|
|
1095
|
+
"agent",
|
|
1096
|
+
"operator"
|
|
1097
|
+
],
|
|
1098
|
+
"maturity": "stable"
|
|
1099
|
+
},
|
|
1088
1100
|
{
|
|
1089
1101
|
"id": "verify-infra-contract-evidence-bundle",
|
|
1090
1102
|
"source": "bin/buildchain.mjs",
|
|
@@ -266,6 +266,18 @@
|
|
|
266
266
|
"classification": "digest-only",
|
|
267
267
|
"source": "workflow-call-input"
|
|
268
268
|
},
|
|
269
|
+
"github-artifact-attestation-platform-id": {
|
|
270
|
+
"classification": "included",
|
|
271
|
+
"source": "workflow-call-input"
|
|
272
|
+
},
|
|
273
|
+
"github-artifact-attestation-signer-sha": {
|
|
274
|
+
"classification": "included",
|
|
275
|
+
"source": "workflow-call-input"
|
|
276
|
+
},
|
|
277
|
+
"github-artifact-attestation-subject-path": {
|
|
278
|
+
"classification": "digest-only",
|
|
279
|
+
"source": "workflow-call-input"
|
|
280
|
+
},
|
|
269
281
|
"install-command": {
|
|
270
282
|
"classification": "digest-only",
|
|
271
283
|
"source": "workflow-call-input"
|
|
@@ -439,7 +451,7 @@
|
|
|
439
451
|
"controller-receipt"
|
|
440
452
|
]
|
|
441
453
|
},
|
|
442
|
-
"digest": "sha256:
|
|
454
|
+
"digest": "sha256:16c0a2506088fc5a4e3337c7c23f5cc7d14f30e9cde23c1d39fc335d05b4a4f9"
|
|
443
455
|
},
|
|
444
456
|
{
|
|
445
457
|
"schemaVersion": 1,
|
|
@@ -643,6 +655,18 @@
|
|
|
643
655
|
"classification": "digest-only",
|
|
644
656
|
"source": "workflow-call-input"
|
|
645
657
|
},
|
|
658
|
+
"github-artifact-attestation-platform-id": {
|
|
659
|
+
"classification": "included",
|
|
660
|
+
"source": "workflow-call-input"
|
|
661
|
+
},
|
|
662
|
+
"github-artifact-attestation-signer-sha": {
|
|
663
|
+
"classification": "included",
|
|
664
|
+
"source": "workflow-call-input"
|
|
665
|
+
},
|
|
666
|
+
"github-artifact-attestation-subject-path": {
|
|
667
|
+
"classification": "digest-only",
|
|
668
|
+
"source": "workflow-call-input"
|
|
669
|
+
},
|
|
646
670
|
"install-command": {
|
|
647
671
|
"classification": "digest-only",
|
|
648
672
|
"source": "workflow-call-input"
|
|
@@ -797,7 +821,7 @@
|
|
|
797
821
|
"controller-receipt"
|
|
798
822
|
]
|
|
799
823
|
},
|
|
800
|
-
"digest": "sha256:
|
|
824
|
+
"digest": "sha256:529f68186a49a8df1f2012fc4a38058548d1cc93eb06b6bed35befddd72519ef"
|
|
801
825
|
},
|
|
802
826
|
{
|
|
803
827
|
"schemaVersion": 1,
|
|
@@ -1626,6 +1650,18 @@
|
|
|
1626
1650
|
"classification": "included",
|
|
1627
1651
|
"source": "workflow-call-input"
|
|
1628
1652
|
},
|
|
1653
|
+
"github-artifact-attestation-environment": {
|
|
1654
|
+
"classification": "digest-only",
|
|
1655
|
+
"source": "workflow-call-input"
|
|
1656
|
+
},
|
|
1657
|
+
"github-artifact-attestation-policy-json": {
|
|
1658
|
+
"classification": "digest-only",
|
|
1659
|
+
"source": "workflow-call-input"
|
|
1660
|
+
},
|
|
1661
|
+
"github-artifact-attestation-retention-days": {
|
|
1662
|
+
"classification": "included",
|
|
1663
|
+
"source": "workflow-call-input"
|
|
1664
|
+
},
|
|
1629
1665
|
"github-governance-receipt-json": {
|
|
1630
1666
|
"classification": "digest-only",
|
|
1631
1667
|
"source": "workflow-call-input"
|
|
@@ -1956,7 +1992,7 @@
|
|
|
1956
1992
|
"controller-receipt"
|
|
1957
1993
|
]
|
|
1958
1994
|
},
|
|
1959
|
-
"digest": "sha256:
|
|
1995
|
+
"digest": "sha256:00baae93d9ed75129fdaed6fcc33285e515b8c7de84816831a39e660941dd7ae"
|
|
1960
1996
|
},
|
|
1961
1997
|
{
|
|
1962
1998
|
"schemaVersion": 1,
|
|
@@ -2132,5 +2168,5 @@
|
|
|
2132
2168
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
2133
2169
|
}
|
|
2134
2170
|
],
|
|
2135
|
-
"digest": "sha256:
|
|
2171
|
+
"digest": "sha256:2d022091ac72303cc5fab5888de3dfd5aecfc8520281f753d963ac7208828d6f"
|
|
2136
2172
|
}
|
|
@@ -21,13 +21,13 @@
|
|
|
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": "6d778d2a4d04a1b93ed21622719e08b3fa1e149af2941e09675c66582a3ebcdd",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
28
|
-
"actionCount":
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
26
|
+
"cliCommandCount": 97,
|
|
27
|
+
"workflowCount": 55,
|
|
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": "6d778d2a4d04a1b93ed21622719e08b3fa1e149af2941e09675c66582a3ebcdd",
|
|
232
232
|
"summary": {
|
|
233
|
-
"cliCommandCount":
|
|
234
|
-
"workflowCount":
|
|
235
|
-
"actionCount":
|
|
236
|
-
"sitePageCount":
|
|
237
|
-
"docCommandRefCount":
|
|
233
|
+
"cliCommandCount": 97,
|
|
234
|
+
"workflowCount": 55,
|
|
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,18 @@
|
|
|
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
|
+
},
|
|
1116
1163
|
{
|
|
1117
1164
|
"id": "export:./anchored-version-material",
|
|
1118
1165
|
"name": "@kungfu-tech/buildchain/anchored-version-material",
|
|
@@ -2813,6 +2860,18 @@
|
|
|
2813
2860
|
"public": true,
|
|
2814
2861
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2815
2862
|
},
|
|
2863
|
+
{
|
|
2864
|
+
"id": "cli:verify-github-artifact-attestation",
|
|
2865
|
+
"name": "buildchain verify github-artifact-attestation <artifact>",
|
|
2866
|
+
"kind": "cli-command",
|
|
2867
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2868
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2869
|
+
"availability": "shipped",
|
|
2870
|
+
"visibility": "public",
|
|
2871
|
+
"participantFacing": true,
|
|
2872
|
+
"public": true,
|
|
2873
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2874
|
+
},
|
|
2816
2875
|
{
|
|
2817
2876
|
"id": "cli:verify-infra-contract-evidence-bundle",
|
|
2818
2877
|
"name": "buildchain verify infra-contract-evidence-bundle <file> [--json]",
|
|
@@ -2949,7 +3008,7 @@
|
|
|
2949
3008
|
"visibility": "public",
|
|
2950
3009
|
"participantFacing": true,
|
|
2951
3010
|
"public": true,
|
|
2952
|
-
"inputCount":
|
|
3011
|
+
"inputCount": 72,
|
|
2953
3012
|
"inputs": [
|
|
2954
3013
|
"artifact-name",
|
|
2955
3014
|
"artifact-name-template",
|
|
@@ -2988,6 +3047,9 @@
|
|
|
2988
3047
|
"expected-artifacts-json",
|
|
2989
3048
|
"fail-fast",
|
|
2990
3049
|
"gate-profile-aggregate-json",
|
|
3050
|
+
"github-artifact-attestation-platform-id",
|
|
3051
|
+
"github-artifact-attestation-signer-sha",
|
|
3052
|
+
"github-artifact-attestation-subject-path",
|
|
2991
3053
|
"install-command",
|
|
2992
3054
|
"kfd-agent-hub",
|
|
2993
3055
|
"lifecycle-timeout-minutes",
|
|
@@ -3140,7 +3202,7 @@
|
|
|
3140
3202
|
"visibility": "public",
|
|
3141
3203
|
"participantFacing": true,
|
|
3142
3204
|
"public": true,
|
|
3143
|
-
"inputCount":
|
|
3205
|
+
"inputCount": 88,
|
|
3144
3206
|
"inputs": [
|
|
3145
3207
|
"allow-repository",
|
|
3146
3208
|
"artifact-name",
|
|
@@ -3155,6 +3217,9 @@
|
|
|
3155
3217
|
"buildchain-repository",
|
|
3156
3218
|
"channel",
|
|
3157
3219
|
"dry-run",
|
|
3220
|
+
"github-artifact-attestation-environment",
|
|
3221
|
+
"github-artifact-attestation-policy-json",
|
|
3222
|
+
"github-artifact-attestation-retention-days",
|
|
3158
3223
|
"github-governance-receipt-json",
|
|
3159
3224
|
"github-release",
|
|
3160
3225
|
"github-release-notes",
|
|
@@ -3593,7 +3658,7 @@
|
|
|
3593
3658
|
"visibility": "public",
|
|
3594
3659
|
"participantFacing": true,
|
|
3595
3660
|
"public": true,
|
|
3596
|
-
"inputCount":
|
|
3661
|
+
"inputCount": 75,
|
|
3597
3662
|
"inputs": [
|
|
3598
3663
|
"artifact-name",
|
|
3599
3664
|
"artifact-name-template",
|
|
@@ -3635,6 +3700,9 @@
|
|
|
3635
3700
|
"expected-artifacts-json",
|
|
3636
3701
|
"fail-fast",
|
|
3637
3702
|
"gate-profile-aggregate-json",
|
|
3703
|
+
"github-artifact-attestation-platform-id",
|
|
3704
|
+
"github-artifact-attestation-signer-sha",
|
|
3705
|
+
"github-artifact-attestation-subject-path",
|
|
3638
3706
|
"install-command",
|
|
3639
3707
|
"kfd-agent-hub",
|
|
3640
3708
|
"lifecycle-timeout-minutes",
|
|
@@ -3845,7 +3913,7 @@
|
|
|
3845
3913
|
"visibility": "public",
|
|
3846
3914
|
"participantFacing": true,
|
|
3847
3915
|
"public": true,
|
|
3848
|
-
"inputCount":
|
|
3916
|
+
"inputCount": 10,
|
|
3849
3917
|
"inputs": [
|
|
3850
3918
|
"alpha-workflow-path",
|
|
3851
3919
|
"buildchain-ref",
|
|
@@ -3854,6 +3922,7 @@
|
|
|
3854
3922
|
"dev-workflow-path",
|
|
3855
3923
|
"dry-run",
|
|
3856
3924
|
"max-age-seconds",
|
|
3925
|
+
"settlement-authorized",
|
|
3857
3926
|
"source-branch",
|
|
3858
3927
|
"target-branch"
|
|
3859
3928
|
],
|
|
@@ -3901,6 +3970,34 @@
|
|
|
3901
3970
|
],
|
|
3902
3971
|
"reverseAuditSource": ".github/workflows"
|
|
3903
3972
|
},
|
|
3973
|
+
{
|
|
3974
|
+
"id": "workflow:github-artifact-attestation",
|
|
3975
|
+
"name": "workflow:github-artifact-attestation",
|
|
3976
|
+
"kind": "workflow",
|
|
3977
|
+
"sourcePath": ".github/workflows/github-artifact-attestation.yml",
|
|
3978
|
+
"evidencePath": ".github/workflows/github-artifact-attestation.yml",
|
|
3979
|
+
"availability": "shipped",
|
|
3980
|
+
"visibility": "public",
|
|
3981
|
+
"participantFacing": true,
|
|
3982
|
+
"public": true,
|
|
3983
|
+
"inputCount": 13,
|
|
3984
|
+
"inputs": [
|
|
3985
|
+
"buildchain-ref",
|
|
3986
|
+
"environment",
|
|
3987
|
+
"evidence-artifact-name",
|
|
3988
|
+
"evidence-run-id",
|
|
3989
|
+
"platform-manifest-artifact-name",
|
|
3990
|
+
"platform-manifest-relative-path",
|
|
3991
|
+
"policy-json",
|
|
3992
|
+
"release-passport-artifact-name",
|
|
3993
|
+
"release-passport-relative-path",
|
|
3994
|
+
"retention-days",
|
|
3995
|
+
"source-sha",
|
|
3996
|
+
"subject-artifact-name",
|
|
3997
|
+
"subject-relative-path"
|
|
3998
|
+
],
|
|
3999
|
+
"reverseAuditSource": ".github/workflows"
|
|
4000
|
+
},
|
|
3904
4001
|
{
|
|
3905
4002
|
"id": "workflow:github-governance-audit",
|
|
3906
4003
|
"name": "workflow:github-governance-audit",
|
|
@@ -4162,7 +4259,7 @@
|
|
|
4162
4259
|
"visibility": "public",
|
|
4163
4260
|
"participantFacing": true,
|
|
4164
4261
|
"public": true,
|
|
4165
|
-
"inputCount":
|
|
4262
|
+
"inputCount": 80,
|
|
4166
4263
|
"inputs": [
|
|
4167
4264
|
"allow-repository",
|
|
4168
4265
|
"artifact-name",
|
|
@@ -4180,6 +4277,9 @@
|
|
|
4180
4277
|
"buildchain-stable-contract-lock-path",
|
|
4181
4278
|
"channel",
|
|
4182
4279
|
"dry-run",
|
|
4280
|
+
"github-artifact-attestation-environment",
|
|
4281
|
+
"github-artifact-attestation-policy-json",
|
|
4282
|
+
"github-artifact-attestation-retention-days",
|
|
4183
4283
|
"github-governance-receipt-json",
|
|
4184
4284
|
"github-release",
|
|
4185
4285
|
"github-release-notes",
|
|
@@ -4408,6 +4508,34 @@
|
|
|
4408
4508
|
"inputs": [],
|
|
4409
4509
|
"reverseAuditSource": ".github/workflows"
|
|
4410
4510
|
},
|
|
4511
|
+
{
|
|
4512
|
+
"id": "action:github-artifact-attestation",
|
|
4513
|
+
"name": "action:github-artifact-attestation",
|
|
4514
|
+
"kind": "action",
|
|
4515
|
+
"sourcePath": "actions/github-artifact-attestation/action.yml",
|
|
4516
|
+
"evidencePath": "actions/github-artifact-attestation/action.yml",
|
|
4517
|
+
"availability": "shipped",
|
|
4518
|
+
"visibility": "public",
|
|
4519
|
+
"participantFacing": true,
|
|
4520
|
+
"public": true,
|
|
4521
|
+
"inputCount": 13,
|
|
4522
|
+
"inputs": [
|
|
4523
|
+
"attestation-id",
|
|
4524
|
+
"attestation-url",
|
|
4525
|
+
"bundle-path",
|
|
4526
|
+
"expected-buildchain-ref",
|
|
4527
|
+
"expected-caller-repository",
|
|
4528
|
+
"expected-source-sha",
|
|
4529
|
+
"mode",
|
|
4530
|
+
"output-dir",
|
|
4531
|
+
"platform-manifest-path",
|
|
4532
|
+
"policy-json",
|
|
4533
|
+
"preparation-json",
|
|
4534
|
+
"release-passport-path",
|
|
4535
|
+
"subject-path"
|
|
4536
|
+
],
|
|
4537
|
+
"reverseAuditSource": "actions/*/action.yml"
|
|
4538
|
+
},
|
|
4411
4539
|
{
|
|
4412
4540
|
"id": "action:macos-credential-island",
|
|
4413
4541
|
"name": "action:macos-credential-island",
|
|
@@ -4453,7 +4581,7 @@
|
|
|
4453
4581
|
"visibility": "public",
|
|
4454
4582
|
"participantFacing": true,
|
|
4455
4583
|
"public": true,
|
|
4456
|
-
"inputCount":
|
|
4584
|
+
"inputCount": 67,
|
|
4457
4585
|
"inputs": [
|
|
4458
4586
|
"allow-repository",
|
|
4459
4587
|
"branch-protection-bypass-apps",
|
|
@@ -4496,6 +4624,7 @@
|
|
|
4496
4624
|
"release-passport",
|
|
4497
4625
|
"release-passport-build-summary-path",
|
|
4498
4626
|
"release-passport-buildchain-self-kfd",
|
|
4627
|
+
"release-passport-github-artifact-attestation-policy-jsons",
|
|
4499
4628
|
"release-passport-impact-json",
|
|
4500
4629
|
"release-passport-invariant-passport-command",
|
|
4501
4630
|
"release-passport-invariant-passport-jsons",
|
|
@@ -4636,6 +4765,18 @@
|
|
|
4636
4765
|
],
|
|
4637
4766
|
"reverseAuditSource": "actions/*/action.yml"
|
|
4638
4767
|
},
|
|
4768
|
+
{
|
|
4769
|
+
"id": "site-page:action:github-artifact-attestation",
|
|
4770
|
+
"name": "site-page:action:github-artifact-attestation",
|
|
4771
|
+
"kind": "site-page",
|
|
4772
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
4773
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
4774
|
+
"availability": "shipped",
|
|
4775
|
+
"visibility": "public",
|
|
4776
|
+
"participantFacing": true,
|
|
4777
|
+
"public": true,
|
|
4778
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4779
|
+
},
|
|
4639
4780
|
{
|
|
4640
4781
|
"id": "site-page:action:macos-credential-island",
|
|
4641
4782
|
"name": "site-page:action:macos-credential-island",
|
|
@@ -4948,6 +5089,18 @@
|
|
|
4948
5089
|
"public": true,
|
|
4949
5090
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4950
5091
|
},
|
|
5092
|
+
{
|
|
5093
|
+
"id": "site-page:manual:github-artifact-attestation",
|
|
5094
|
+
"name": "site-page:manual:github-artifact-attestation",
|
|
5095
|
+
"kind": "site-page",
|
|
5096
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5097
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5098
|
+
"availability": "shipped",
|
|
5099
|
+
"visibility": "public",
|
|
5100
|
+
"participantFacing": true,
|
|
5101
|
+
"public": true,
|
|
5102
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5103
|
+
},
|
|
4951
5104
|
{
|
|
4952
5105
|
"id": "site-page:manual:github-governance-authority",
|
|
4953
5106
|
"name": "site-page:manual:github-governance-authority",
|
|
@@ -5367,6 +5520,39 @@
|
|
|
5367
5520
|
"participantFacing": true,
|
|
5368
5521
|
"public": true
|
|
5369
5522
|
},
|
|
5523
|
+
{
|
|
5524
|
+
"id": "control:.github/workflows/github-artifact-attestation.yml",
|
|
5525
|
+
"name": "control:.github/workflows/github-artifact-attestation.yml",
|
|
5526
|
+
"kind": "workflow",
|
|
5527
|
+
"sourcePath": ".github/workflows/github-artifact-attestation.yml",
|
|
5528
|
+
"evidencePath": ".github/workflows/github-artifact-attestation.yml",
|
|
5529
|
+
"availability": "shipped",
|
|
5530
|
+
"visibility": "public",
|
|
5531
|
+
"participantFacing": true,
|
|
5532
|
+
"public": true
|
|
5533
|
+
},
|
|
5534
|
+
{
|
|
5535
|
+
"id": "control:actions/github-artifact-attestation/action.yml",
|
|
5536
|
+
"name": "control:actions/github-artifact-attestation/action.yml",
|
|
5537
|
+
"kind": "action",
|
|
5538
|
+
"sourcePath": "actions/github-artifact-attestation/action.yml",
|
|
5539
|
+
"evidencePath": "actions/github-artifact-attestation/action.yml",
|
|
5540
|
+
"availability": "shipped",
|
|
5541
|
+
"visibility": "public",
|
|
5542
|
+
"participantFacing": true,
|
|
5543
|
+
"public": true
|
|
5544
|
+
},
|
|
5545
|
+
{
|
|
5546
|
+
"id": "control:actions/github-artifact-attestation/index.js",
|
|
5547
|
+
"name": "control:actions/github-artifact-attestation/index.js",
|
|
5548
|
+
"kind": "action",
|
|
5549
|
+
"sourcePath": "actions/github-artifact-attestation/index.js",
|
|
5550
|
+
"evidencePath": "actions/github-artifact-attestation/index.js",
|
|
5551
|
+
"availability": "shipped",
|
|
5552
|
+
"visibility": "public",
|
|
5553
|
+
"participantFacing": true,
|
|
5554
|
+
"public": true
|
|
5555
|
+
},
|
|
5370
5556
|
{
|
|
5371
5557
|
"id": "control:.github/workflows/release-propagation.yml",
|
|
5372
5558
|
"name": "control:.github/workflows/release-propagation.yml",
|
|
@@ -5458,6 +5644,6 @@
|
|
|
5458
5644
|
}
|
|
5459
5645
|
}
|
|
5460
5646
|
],
|
|
5461
|
-
"publicSurfaceCount":
|
|
5647
|
+
"publicSurfaceCount": 360
|
|
5462
5648
|
}
|
|
5463
5649
|
}
|
|
@@ -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:23158252e5d2bd09b9b54dc08a0a452562e4b3a6ec3861b991632a34199d9820",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -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:afdb8172bc41b9a20c0d18f4ddcc55ee287ac56db05e67e55d12de1843b724e1",
|
|
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:5d46d0f5e6e03541c187ffea154dcce703ef78e59d16bd0e4fa7c175da940480",
|
|
350
364
|
"capabilityGroup": "reusable-build",
|
|
351
365
|
"audience": [
|
|
352
366
|
"consumer",
|