@kungfu-tech/buildchain 3.0.2-alpha.3 → 3.0.2-alpha.5

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.
Files changed (49) hide show
  1. package/README.md +1 -0
  2. package/actions/github-artifact-attestation/README.md +10 -0
  3. package/actions/promote-buildchain-ref/README.md +7 -0
  4. package/bin/buildchain.mjs +5 -0
  5. package/bin/internal/trust-release-cli.mjs +74 -3
  6. package/dist/site/artifact-schemas.json +5 -1
  7. package/dist/site/buildchain-contract.json +79 -28
  8. package/dist/site/buildchain-site.json +110 -27
  9. package/dist/site/capability-registry.json +8 -7
  10. package/dist/site/cli-registry.json +12 -0
  11. package/dist/site/controller-registry.json +40 -4
  12. package/dist/site/kfd-claims.json +203 -18
  13. package/dist/site/kfd-upstream-aggregate.json +1 -1
  14. package/dist/site/manual-registry.json +19 -5
  15. package/dist/site/node-api-registry.json +23 -10
  16. package/dist/site/page-registry.json +91 -17
  17. package/dist/site/public-surface-audit.json +125 -15
  18. package/dist/site/publication-authority-registry.json +27 -2
  19. package/dist/site/publication-registry.json +4 -4
  20. package/dist/site/release-model.json +2 -1
  21. package/dist/site/release-passport-check-manifest.json +1 -0
  22. package/dist/site/release-provenance.json +1 -0
  23. package/dist/site/schemas/release-passport-v1.schema.json +6 -0
  24. package/dist/site/site-manifest.json +17 -9
  25. package/dist/site/workflow-registry.json +84 -7
  26. package/docs/MAP.md +3 -1
  27. package/docs/binary-distribution.md +7 -0
  28. package/docs/cli.md +9 -0
  29. package/docs/dev-alpha-candidate-patrol.md +16 -4
  30. package/docs/github-artifact-attestation.md +219 -0
  31. package/docs/release-passport.md +13 -0
  32. package/docs/reusable-build-surface.md +6 -0
  33. package/package.json +2 -1
  34. package/packages/core/buildchain-contract.js +6 -0
  35. package/packages/core/buildchain-kfd-claims.js +5 -0
  36. package/packages/core/buildchain-publication-authority.js +1 -0
  37. package/packages/core/channel-candidate.js +67 -16
  38. package/packages/core/github-artifact-attestation.js +642 -0
  39. package/packages/core/index.js +19 -0
  40. package/packages/core/publication-authority.js +1 -1
  41. package/packages/core/release-passport-contract.js +2 -0
  42. package/packages/core/release-passport.js +51 -0
  43. package/scripts/check-inventory.mjs +4 -0
  44. package/scripts/create-github-artifact-attestation-policy.mjs +62 -0
  45. package/scripts/dev-alpha-candidate-patrol.mjs +256 -46
  46. package/scripts/generate-site-bundle.mjs +12 -0
  47. package/scripts/publish-github-artifact-attestation-evidence.mjs +201 -0
  48. package/scripts/release-candidate-resolver.mjs +12 -0
  49. 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": 4,
51
- "pageCount": 4,
52
- "cliCommandCount": 21,
53
- "nodeApiCount": 8,
54
- "workflowCount": 2,
55
- "actionCount": 1
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": 7,
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:7ab36c233a4a448f3894e19c3e6a3b5f765095d2a8628cbbe421e4b82fe3e4b9"
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:9e5d5244c54d6613024beb43613afcae8d9cfb5cae7799c7a83a2799034ad64f"
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:4bd94f0bb1790c87af758b71aa592a3e22fdcd84a9851931d252e3f60cba8d40"
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:fcd7a66644c922460625b5bce0b3ceaa20bc84e87681bf949e807bd8c358fcf4"
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": "23b05dbcaf2e80dd05bdc0c908f16ec927bbd6d1cfd3bc5c329fe972ae868195",
24
+ "sha256": "cfabd951fad28fb421abe155733557a50c4ec5fa4ce932b8edb427388596f717",
25
25
  "summary": {
26
- "cliCommandCount": 96,
27
- "workflowCount": 54,
28
- "actionCount": 5,
29
- "sitePageCount": 57,
30
- "docCommandRefCount": 286,
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": "23b05dbcaf2e80dd05bdc0c908f16ec927bbd6d1cfd3bc5c329fe972ae868195",
231
+ "sha256": "cfabd951fad28fb421abe155733557a50c4ec5fa4ce932b8edb427388596f717",
232
232
  "summary": {
233
- "cliCommandCount": 96,
234
- "workflowCount": 54,
235
- "actionCount": 5,
236
- "sitePageCount": 57,
237
- "docCommandRefCount": 286,
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": 69,
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": 85,
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": 72,
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",
@@ -3901,6 +3969,34 @@
3901
3969
  ],
3902
3970
  "reverseAuditSource": ".github/workflows"
3903
3971
  },
3972
+ {
3973
+ "id": "workflow:github-artifact-attestation",
3974
+ "name": "workflow:github-artifact-attestation",
3975
+ "kind": "workflow",
3976
+ "sourcePath": ".github/workflows/github-artifact-attestation.yml",
3977
+ "evidencePath": ".github/workflows/github-artifact-attestation.yml",
3978
+ "availability": "shipped",
3979
+ "visibility": "public",
3980
+ "participantFacing": true,
3981
+ "public": true,
3982
+ "inputCount": 13,
3983
+ "inputs": [
3984
+ "buildchain-ref",
3985
+ "environment",
3986
+ "evidence-artifact-name",
3987
+ "evidence-run-id",
3988
+ "platform-manifest-artifact-name",
3989
+ "platform-manifest-relative-path",
3990
+ "policy-json",
3991
+ "release-passport-artifact-name",
3992
+ "release-passport-relative-path",
3993
+ "retention-days",
3994
+ "source-sha",
3995
+ "subject-artifact-name",
3996
+ "subject-relative-path"
3997
+ ],
3998
+ "reverseAuditSource": ".github/workflows"
3999
+ },
3904
4000
  {
3905
4001
  "id": "workflow:github-governance-audit",
3906
4002
  "name": "workflow:github-governance-audit",
@@ -4162,7 +4258,7 @@
4162
4258
  "visibility": "public",
4163
4259
  "participantFacing": true,
4164
4260
  "public": true,
4165
- "inputCount": 77,
4261
+ "inputCount": 80,
4166
4262
  "inputs": [
4167
4263
  "allow-repository",
4168
4264
  "artifact-name",
@@ -4180,6 +4276,9 @@
4180
4276
  "buildchain-stable-contract-lock-path",
4181
4277
  "channel",
4182
4278
  "dry-run",
4279
+ "github-artifact-attestation-environment",
4280
+ "github-artifact-attestation-policy-json",
4281
+ "github-artifact-attestation-retention-days",
4183
4282
  "github-governance-receipt-json",
4184
4283
  "github-release",
4185
4284
  "github-release-notes",
@@ -4408,6 +4507,34 @@
4408
4507
  "inputs": [],
4409
4508
  "reverseAuditSource": ".github/workflows"
4410
4509
  },
4510
+ {
4511
+ "id": "action:github-artifact-attestation",
4512
+ "name": "action:github-artifact-attestation",
4513
+ "kind": "action",
4514
+ "sourcePath": "actions/github-artifact-attestation/action.yml",
4515
+ "evidencePath": "actions/github-artifact-attestation/action.yml",
4516
+ "availability": "shipped",
4517
+ "visibility": "public",
4518
+ "participantFacing": true,
4519
+ "public": true,
4520
+ "inputCount": 13,
4521
+ "inputs": [
4522
+ "attestation-id",
4523
+ "attestation-url",
4524
+ "bundle-path",
4525
+ "expected-buildchain-ref",
4526
+ "expected-caller-repository",
4527
+ "expected-source-sha",
4528
+ "mode",
4529
+ "output-dir",
4530
+ "platform-manifest-path",
4531
+ "policy-json",
4532
+ "preparation-json",
4533
+ "release-passport-path",
4534
+ "subject-path"
4535
+ ],
4536
+ "reverseAuditSource": "actions/*/action.yml"
4537
+ },
4411
4538
  {
4412
4539
  "id": "action:macos-credential-island",
4413
4540
  "name": "action:macos-credential-island",
@@ -4453,7 +4580,7 @@
4453
4580
  "visibility": "public",
4454
4581
  "participantFacing": true,
4455
4582
  "public": true,
4456
- "inputCount": 66,
4583
+ "inputCount": 67,
4457
4584
  "inputs": [
4458
4585
  "allow-repository",
4459
4586
  "branch-protection-bypass-apps",
@@ -4496,6 +4623,7 @@
4496
4623
  "release-passport",
4497
4624
  "release-passport-build-summary-path",
4498
4625
  "release-passport-buildchain-self-kfd",
4626
+ "release-passport-github-artifact-attestation-policy-jsons",
4499
4627
  "release-passport-impact-json",
4500
4628
  "release-passport-invariant-passport-command",
4501
4629
  "release-passport-invariant-passport-jsons",
@@ -4636,6 +4764,18 @@
4636
4764
  ],
4637
4765
  "reverseAuditSource": "actions/*/action.yml"
4638
4766
  },
4767
+ {
4768
+ "id": "site-page:action:github-artifact-attestation",
4769
+ "name": "site-page:action:github-artifact-attestation",
4770
+ "kind": "site-page",
4771
+ "sourcePath": "dist/site/page-registry.json",
4772
+ "evidencePath": "dist/site/page-registry.json",
4773
+ "availability": "shipped",
4774
+ "visibility": "public",
4775
+ "participantFacing": true,
4776
+ "public": true,
4777
+ "reverseAuditSource": "dist/site/page-registry.json"
4778
+ },
4639
4779
  {
4640
4780
  "id": "site-page:action:macos-credential-island",
4641
4781
  "name": "site-page:action:macos-credential-island",
@@ -4948,6 +5088,18 @@
4948
5088
  "public": true,
4949
5089
  "reverseAuditSource": "dist/site/page-registry.json"
4950
5090
  },
5091
+ {
5092
+ "id": "site-page:manual:github-artifact-attestation",
5093
+ "name": "site-page:manual:github-artifact-attestation",
5094
+ "kind": "site-page",
5095
+ "sourcePath": "dist/site/page-registry.json",
5096
+ "evidencePath": "dist/site/page-registry.json",
5097
+ "availability": "shipped",
5098
+ "visibility": "public",
5099
+ "participantFacing": true,
5100
+ "public": true,
5101
+ "reverseAuditSource": "dist/site/page-registry.json"
5102
+ },
4951
5103
  {
4952
5104
  "id": "site-page:manual:github-governance-authority",
4953
5105
  "name": "site-page:manual:github-governance-authority",
@@ -5367,6 +5519,39 @@
5367
5519
  "participantFacing": true,
5368
5520
  "public": true
5369
5521
  },
5522
+ {
5523
+ "id": "control:.github/workflows/github-artifact-attestation.yml",
5524
+ "name": "control:.github/workflows/github-artifact-attestation.yml",
5525
+ "kind": "workflow",
5526
+ "sourcePath": ".github/workflows/github-artifact-attestation.yml",
5527
+ "evidencePath": ".github/workflows/github-artifact-attestation.yml",
5528
+ "availability": "shipped",
5529
+ "visibility": "public",
5530
+ "participantFacing": true,
5531
+ "public": true
5532
+ },
5533
+ {
5534
+ "id": "control:actions/github-artifact-attestation/action.yml",
5535
+ "name": "control:actions/github-artifact-attestation/action.yml",
5536
+ "kind": "action",
5537
+ "sourcePath": "actions/github-artifact-attestation/action.yml",
5538
+ "evidencePath": "actions/github-artifact-attestation/action.yml",
5539
+ "availability": "shipped",
5540
+ "visibility": "public",
5541
+ "participantFacing": true,
5542
+ "public": true
5543
+ },
5544
+ {
5545
+ "id": "control:actions/github-artifact-attestation/index.js",
5546
+ "name": "control:actions/github-artifact-attestation/index.js",
5547
+ "kind": "action",
5548
+ "sourcePath": "actions/github-artifact-attestation/index.js",
5549
+ "evidencePath": "actions/github-artifact-attestation/index.js",
5550
+ "availability": "shipped",
5551
+ "visibility": "public",
5552
+ "participantFacing": true,
5553
+ "public": true
5554
+ },
5370
5555
  {
5371
5556
  "id": "control:.github/workflows/release-propagation.yml",
5372
5557
  "name": "control:.github/workflows/release-propagation.yml",
@@ -5458,6 +5643,6 @@
5458
5643
  }
5459
5644
  }
5460
5645
  ],
5461
- "publicSurfaceCount": 348
5646
+ "publicSurfaceCount": 360
5462
5647
  }
5463
5648
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "3.0.2-alpha.3",
7
+ "version": "3.0.2-alpha.5",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {
@@ -9,7 +9,7 @@
9
9
  "title": "Buildchain documentation map",
10
10
  "path": "docs/MAP.md",
11
11
  "plane": "use",
12
- "digest": "sha256:fc8f7c63b8427e513f9524b8e22e4b0dcd8981fcc724417a29b942fe237fc0a9",
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:ed29d25882cbf4ec062abc21e7d069a6377eaf7e3171c24642dfe08da2e4c05b",
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:ae0f8e6cafbb4c39732e6a7252d46b523b0a69e8e05d3ce7ee0b51a916b1b027",
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:47be88f5e5fd14124d03510b807722215034d34eefcebdfe2599a310350b7697",
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:cd1c110cd44d475f3ef0406626f710f0d075013db3a8b15718b1e76676e4b5f5",
363
+ "digest": "sha256:5d46d0f5e6e03541c187ffea154dcce703ef78e59d16bd0e4fa7c175da940480",
350
364
  "capabilityGroup": "reusable-build",
351
365
  "audience": [
352
366
  "consumer",