@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
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
4
4
|
"status": "passed",
|
|
5
5
|
"summary": {
|
|
6
|
-
"cliCommandCount":
|
|
7
|
-
"workflowCount":
|
|
8
|
-
"actionCount":
|
|
9
|
-
"sitePageCount":
|
|
10
|
-
"docCommandRefCount":
|
|
6
|
+
"cliCommandCount": 97,
|
|
7
|
+
"workflowCount": 57,
|
|
8
|
+
"actionCount": 6,
|
|
9
|
+
"sitePageCount": 59,
|
|
10
|
+
"docCommandRefCount": 291,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
13
13
|
"enumerated": {
|
|
@@ -462,6 +462,11 @@
|
|
|
462
462
|
"source": "bin/buildchain.mjs",
|
|
463
463
|
"usage": "buildchain verify artifact-envelope <file-or-json> [--assessment-time <epoch>]"
|
|
464
464
|
},
|
|
465
|
+
{
|
|
466
|
+
"id": "verify-github-artifact-attestation",
|
|
467
|
+
"source": "bin/buildchain.mjs",
|
|
468
|
+
"usage": "buildchain verify github-artifact-attestation <artifact>"
|
|
469
|
+
},
|
|
465
470
|
{
|
|
466
471
|
"id": "verify-infra-contract-evidence-bundle",
|
|
467
472
|
"source": "bin/buildchain.mjs",
|
|
@@ -502,6 +507,7 @@
|
|
|
502
507
|
"adapter-path",
|
|
503
508
|
"artifact-retention-days",
|
|
504
509
|
"buildchain-repository",
|
|
510
|
+
"media-profile",
|
|
505
511
|
"render-media",
|
|
506
512
|
"renderer-image",
|
|
507
513
|
"require-trusted-event",
|
|
@@ -509,7 +515,7 @@
|
|
|
509
515
|
"source-artifact-name",
|
|
510
516
|
"source-ref"
|
|
511
517
|
],
|
|
512
|
-
"inputCount":
|
|
518
|
+
"inputCount": 10,
|
|
513
519
|
"secrets": [],
|
|
514
520
|
"secretCount": 0,
|
|
515
521
|
"outputs": [
|
|
@@ -522,10 +528,12 @@
|
|
|
522
528
|
"media-artifact-id",
|
|
523
529
|
"media-artifact-name",
|
|
524
530
|
"media-artifact-url",
|
|
531
|
+
"media-profile",
|
|
532
|
+
"media-qualification-root",
|
|
525
533
|
"media-root",
|
|
526
534
|
"source-sha"
|
|
527
535
|
],
|
|
528
|
-
"outputCount":
|
|
536
|
+
"outputCount": 13
|
|
529
537
|
},
|
|
530
538
|
{
|
|
531
539
|
"id": ".binary-release-assets",
|
|
@@ -596,6 +604,9 @@
|
|
|
596
604
|
"expected-artifacts-json",
|
|
597
605
|
"fail-fast",
|
|
598
606
|
"gate-profile-aggregate-json",
|
|
607
|
+
"github-artifact-attestation-platform-id",
|
|
608
|
+
"github-artifact-attestation-signer-sha",
|
|
609
|
+
"github-artifact-attestation-subject-path",
|
|
599
610
|
"install-command",
|
|
600
611
|
"kfd-agent-hub",
|
|
601
612
|
"lifecycle-timeout-minutes",
|
|
@@ -629,7 +640,7 @@
|
|
|
629
640
|
"verify-command",
|
|
630
641
|
"working-directory"
|
|
631
642
|
],
|
|
632
|
-
"inputCount":
|
|
643
|
+
"inputCount": 72,
|
|
633
644
|
"secrets": [
|
|
634
645
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
635
646
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -638,9 +649,10 @@
|
|
|
638
649
|
"BUILDCHAIN_MACOS_CERTIFICATE_PASSWORD",
|
|
639
650
|
"BUILDCHAIN_MACOS_NOTARY_API_ISSUER",
|
|
640
651
|
"BUILDCHAIN_MACOS_NOTARY_API_KEY_ID",
|
|
641
|
-
"BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64"
|
|
652
|
+
"BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64",
|
|
653
|
+
"BUILDCHAIN_PROMOTION_TOKEN"
|
|
642
654
|
],
|
|
643
|
-
"secretCount":
|
|
655
|
+
"secretCount": 9,
|
|
644
656
|
"outputs": [
|
|
645
657
|
"artifact-coordinates-json",
|
|
646
658
|
"build-diagnostics-summary-artifact",
|
|
@@ -828,6 +840,9 @@
|
|
|
828
840
|
"buildchain-repository",
|
|
829
841
|
"channel",
|
|
830
842
|
"dry-run",
|
|
843
|
+
"github-artifact-attestation-environment",
|
|
844
|
+
"github-artifact-attestation-policy-json",
|
|
845
|
+
"github-artifact-attestation-retention-days",
|
|
831
846
|
"github-governance-receipt-json",
|
|
832
847
|
"github-release",
|
|
833
848
|
"github-release-notes",
|
|
@@ -901,7 +916,7 @@
|
|
|
901
916
|
"target-sha",
|
|
902
917
|
"trusted-publishing"
|
|
903
918
|
],
|
|
904
|
-
"inputCount":
|
|
919
|
+
"inputCount": 88,
|
|
905
920
|
"secrets": [
|
|
906
921
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
907
922
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -924,6 +939,10 @@
|
|
|
924
939
|
"controller-receipt-digest",
|
|
925
940
|
"controller-receipt-json",
|
|
926
941
|
"controller-receipt-status",
|
|
942
|
+
"github-artifact-attestation-evidence-root",
|
|
943
|
+
"github-artifact-attestation-id",
|
|
944
|
+
"github-artifact-attestation-publication-receipt-digest",
|
|
945
|
+
"github-artifact-attestation-url",
|
|
927
946
|
"promoted-sha",
|
|
928
947
|
"publication-capability-digest",
|
|
929
948
|
"publication-commit-evidence-digest",
|
|
@@ -932,7 +951,7 @@
|
|
|
932
951
|
"publication-commit-url",
|
|
933
952
|
"release-candidate-artifact"
|
|
934
953
|
],
|
|
935
|
-
"outputCount":
|
|
954
|
+
"outputCount": 19
|
|
936
955
|
},
|
|
937
956
|
{
|
|
938
957
|
"id": ".release-docker",
|
|
@@ -1285,6 +1304,28 @@
|
|
|
1285
1304
|
"outputs": [],
|
|
1286
1305
|
"outputCount": 0
|
|
1287
1306
|
},
|
|
1307
|
+
{
|
|
1308
|
+
"id": "artifact-signing-authority",
|
|
1309
|
+
"path": ".github/workflows/artifact-signing-authority.yml",
|
|
1310
|
+
"reusable": false,
|
|
1311
|
+
"inputs": [],
|
|
1312
|
+
"inputCount": 0,
|
|
1313
|
+
"secrets": [],
|
|
1314
|
+
"secretCount": 0,
|
|
1315
|
+
"outputs": [],
|
|
1316
|
+
"outputCount": 0
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"id": "auditable-demo-media-profile-qualification",
|
|
1320
|
+
"path": ".github/workflows/auditable-demo-media-profile-qualification.yml",
|
|
1321
|
+
"reusable": false,
|
|
1322
|
+
"inputs": [],
|
|
1323
|
+
"inputCount": 0,
|
|
1324
|
+
"secrets": [],
|
|
1325
|
+
"secretCount": 0,
|
|
1326
|
+
"outputs": [],
|
|
1327
|
+
"outputCount": 0
|
|
1328
|
+
},
|
|
1288
1329
|
{
|
|
1289
1330
|
"id": "binary-distribution",
|
|
1290
1331
|
"path": ".github/workflows/binary-distribution.yml",
|
|
@@ -1363,6 +1404,9 @@
|
|
|
1363
1404
|
"expected-artifacts-json",
|
|
1364
1405
|
"fail-fast",
|
|
1365
1406
|
"gate-profile-aggregate-json",
|
|
1407
|
+
"github-artifact-attestation-platform-id",
|
|
1408
|
+
"github-artifact-attestation-signer-sha",
|
|
1409
|
+
"github-artifact-attestation-subject-path",
|
|
1366
1410
|
"install-command",
|
|
1367
1411
|
"kfd-agent-hub",
|
|
1368
1412
|
"lifecycle-timeout-minutes",
|
|
@@ -1396,7 +1440,7 @@
|
|
|
1396
1440
|
"verify-command",
|
|
1397
1441
|
"working-directory"
|
|
1398
1442
|
],
|
|
1399
|
-
"inputCount":
|
|
1443
|
+
"inputCount": 75,
|
|
1400
1444
|
"secrets": [
|
|
1401
1445
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
1402
1446
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -1405,9 +1449,10 @@
|
|
|
1405
1449
|
"BUILDCHAIN_MACOS_CERTIFICATE_PASSWORD",
|
|
1406
1450
|
"BUILDCHAIN_MACOS_NOTARY_API_ISSUER",
|
|
1407
1451
|
"BUILDCHAIN_MACOS_NOTARY_API_KEY_ID",
|
|
1408
|
-
"BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64"
|
|
1452
|
+
"BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64",
|
|
1453
|
+
"BUILDCHAIN_PROMOTION_TOKEN"
|
|
1409
1454
|
],
|
|
1410
|
-
"secretCount":
|
|
1455
|
+
"secretCount": 9,
|
|
1411
1456
|
"outputs": [
|
|
1412
1457
|
"artifact-coordinates-json",
|
|
1413
1458
|
"build-diagnostics-summary-artifact",
|
|
@@ -1608,6 +1653,41 @@
|
|
|
1608
1653
|
],
|
|
1609
1654
|
"outputCount": 7
|
|
1610
1655
|
},
|
|
1656
|
+
{
|
|
1657
|
+
"id": "dev-alpha-candidate-patrol",
|
|
1658
|
+
"path": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
1659
|
+
"reusable": true,
|
|
1660
|
+
"inputs": [
|
|
1661
|
+
"alpha-workflow-path",
|
|
1662
|
+
"buildchain-ref",
|
|
1663
|
+
"buildchain-repository",
|
|
1664
|
+
"create-pull-request",
|
|
1665
|
+
"dev-workflow-path",
|
|
1666
|
+
"dry-run",
|
|
1667
|
+
"max-age-seconds",
|
|
1668
|
+
"pull-request-body-prefix",
|
|
1669
|
+
"settlement-authorized",
|
|
1670
|
+
"source-branch",
|
|
1671
|
+
"target-branch"
|
|
1672
|
+
],
|
|
1673
|
+
"inputCount": 11,
|
|
1674
|
+
"secrets": [
|
|
1675
|
+
"promotion-token"
|
|
1676
|
+
],
|
|
1677
|
+
"secretCount": 1,
|
|
1678
|
+
"outputs": [
|
|
1679
|
+
"active-candidate-pr",
|
|
1680
|
+
"controller-state",
|
|
1681
|
+
"eligible",
|
|
1682
|
+
"next-candidate-sha",
|
|
1683
|
+
"promotion-pr",
|
|
1684
|
+
"result-path",
|
|
1685
|
+
"selected-sha",
|
|
1686
|
+
"settlement-action",
|
|
1687
|
+
"source-lock-ref"
|
|
1688
|
+
],
|
|
1689
|
+
"outputCount": 9
|
|
1690
|
+
},
|
|
1611
1691
|
{
|
|
1612
1692
|
"id": "dev-merge-queue-governance",
|
|
1613
1693
|
"path": ".github/workflows/dev-merge-queue-governance.yml",
|
|
@@ -1653,6 +1733,37 @@
|
|
|
1653
1733
|
],
|
|
1654
1734
|
"outputCount": 6
|
|
1655
1735
|
},
|
|
1736
|
+
{
|
|
1737
|
+
"id": "github-artifact-attestation",
|
|
1738
|
+
"path": ".github/workflows/github-artifact-attestation.yml",
|
|
1739
|
+
"reusable": true,
|
|
1740
|
+
"inputs": [
|
|
1741
|
+
"buildchain-ref",
|
|
1742
|
+
"environment",
|
|
1743
|
+
"evidence-artifact-name",
|
|
1744
|
+
"evidence-run-id",
|
|
1745
|
+
"platform-manifest-artifact-name",
|
|
1746
|
+
"platform-manifest-relative-path",
|
|
1747
|
+
"policy-json",
|
|
1748
|
+
"release-passport-artifact-name",
|
|
1749
|
+
"release-passport-relative-path",
|
|
1750
|
+
"retention-days",
|
|
1751
|
+
"source-sha",
|
|
1752
|
+
"subject-artifact-name",
|
|
1753
|
+
"subject-relative-path"
|
|
1754
|
+
],
|
|
1755
|
+
"inputCount": 13,
|
|
1756
|
+
"secrets": [],
|
|
1757
|
+
"secretCount": 0,
|
|
1758
|
+
"outputs": [
|
|
1759
|
+
"attestation-id",
|
|
1760
|
+
"attestation-url",
|
|
1761
|
+
"bundle-digest",
|
|
1762
|
+
"evidence-artifact-name",
|
|
1763
|
+
"evidence-root"
|
|
1764
|
+
],
|
|
1765
|
+
"outputCount": 5
|
|
1766
|
+
},
|
|
1656
1767
|
{
|
|
1657
1768
|
"id": "github-governance-audit",
|
|
1658
1769
|
"path": ".github/workflows/github-governance-audit.yml",
|
|
@@ -1962,6 +2073,9 @@
|
|
|
1962
2073
|
"buildchain-stable-contract-lock-path",
|
|
1963
2074
|
"channel",
|
|
1964
2075
|
"dry-run",
|
|
2076
|
+
"github-artifact-attestation-environment",
|
|
2077
|
+
"github-artifact-attestation-policy-json",
|
|
2078
|
+
"github-artifact-attestation-retention-days",
|
|
1965
2079
|
"github-governance-receipt-json",
|
|
1966
2080
|
"github-release",
|
|
1967
2081
|
"github-release-notes",
|
|
@@ -2024,7 +2138,7 @@
|
|
|
2024
2138
|
"target-sha",
|
|
2025
2139
|
"trusted-publishing"
|
|
2026
2140
|
],
|
|
2027
|
-
"inputCount":
|
|
2141
|
+
"inputCount": 80,
|
|
2028
2142
|
"secrets": [
|
|
2029
2143
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
2030
2144
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -2048,6 +2162,10 @@
|
|
|
2048
2162
|
"controller-receipt-digest",
|
|
2049
2163
|
"controller-receipt-json",
|
|
2050
2164
|
"controller-receipt-status",
|
|
2165
|
+
"github-artifact-attestation-evidence-root",
|
|
2166
|
+
"github-artifact-attestation-id",
|
|
2167
|
+
"github-artifact-attestation-publication-receipt-digest",
|
|
2168
|
+
"github-artifact-attestation-url",
|
|
2051
2169
|
"promoted-sha",
|
|
2052
2170
|
"promotion-contract-lock-digest",
|
|
2053
2171
|
"promotion-contract-lock-path",
|
|
@@ -2067,7 +2185,7 @@
|
|
|
2067
2185
|
"publication-commit-url",
|
|
2068
2186
|
"release-candidate-artifact"
|
|
2069
2187
|
],
|
|
2070
|
-
"outputCount":
|
|
2188
|
+
"outputCount": 31
|
|
2071
2189
|
},
|
|
2072
2190
|
{
|
|
2073
2191
|
"id": "release-governance-reconcile",
|
|
@@ -2231,6 +2349,26 @@
|
|
|
2231
2349
|
}
|
|
2232
2350
|
],
|
|
2233
2351
|
"actionInputs": [
|
|
2352
|
+
{
|
|
2353
|
+
"id": "github-artifact-attestation",
|
|
2354
|
+
"path": "actions/github-artifact-attestation/action.yml",
|
|
2355
|
+
"inputs": [
|
|
2356
|
+
"attestation-id",
|
|
2357
|
+
"attestation-url",
|
|
2358
|
+
"bundle-path",
|
|
2359
|
+
"expected-buildchain-ref",
|
|
2360
|
+
"expected-caller-repository",
|
|
2361
|
+
"expected-source-sha",
|
|
2362
|
+
"mode",
|
|
2363
|
+
"output-dir",
|
|
2364
|
+
"platform-manifest-path",
|
|
2365
|
+
"policy-json",
|
|
2366
|
+
"preparation-json",
|
|
2367
|
+
"release-passport-path",
|
|
2368
|
+
"subject-path"
|
|
2369
|
+
],
|
|
2370
|
+
"inputCount": 13
|
|
2371
|
+
},
|
|
2234
2372
|
{
|
|
2235
2373
|
"id": "macos-credential-island",
|
|
2236
2374
|
"path": "actions/macos-credential-island/action.yml",
|
|
@@ -2303,6 +2441,7 @@
|
|
|
2303
2441
|
"release-passport",
|
|
2304
2442
|
"release-passport-build-summary-path",
|
|
2305
2443
|
"release-passport-buildchain-self-kfd",
|
|
2444
|
+
"release-passport-github-artifact-attestation-policy-jsons",
|
|
2306
2445
|
"release-passport-impact-json",
|
|
2307
2446
|
"release-passport-invariant-passport-command",
|
|
2308
2447
|
"release-passport-invariant-passport-jsons",
|
|
@@ -2329,7 +2468,7 @@
|
|
|
2329
2468
|
"transaction-state-path",
|
|
2330
2469
|
"verification-command"
|
|
2331
2470
|
],
|
|
2332
|
-
"inputCount":
|
|
2471
|
+
"inputCount": 67
|
|
2333
2472
|
},
|
|
2334
2473
|
{
|
|
2335
2474
|
"id": "report-buildchain-issue",
|
|
@@ -2421,6 +2560,10 @@
|
|
|
2421
2560
|
}
|
|
2422
2561
|
],
|
|
2423
2562
|
"sitePages": [
|
|
2563
|
+
{
|
|
2564
|
+
"id": "action:github-artifact-attestation",
|
|
2565
|
+
"category": "action"
|
|
2566
|
+
},
|
|
2424
2567
|
{
|
|
2425
2568
|
"id": "action:macos-credential-island",
|
|
2426
2569
|
"category": "action"
|
|
@@ -2521,6 +2664,14 @@
|
|
|
2521
2664
|
"id": "manual:controller-evidence",
|
|
2522
2665
|
"category": "manual"
|
|
2523
2666
|
},
|
|
2667
|
+
{
|
|
2668
|
+
"id": "manual:dev-alpha-candidate-patrol",
|
|
2669
|
+
"category": "manual"
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"id": "manual:github-artifact-attestation",
|
|
2673
|
+
"category": "manual"
|
|
2674
|
+
},
|
|
2524
2675
|
{
|
|
2525
2676
|
"id": "manual:github-governance-authority",
|
|
2526
2677
|
"category": "manual"
|
|
@@ -2877,6 +3028,11 @@
|
|
|
2877
3028
|
"path": "docs/cli.md",
|
|
2878
3029
|
"command": "buildchain collect github-release"
|
|
2879
3030
|
},
|
|
3031
|
+
{
|
|
3032
|
+
"id": "collect-github-release",
|
|
3033
|
+
"path": "docs/github-artifact-attestation.md",
|
|
3034
|
+
"command": "buildchain collect github-release"
|
|
3035
|
+
},
|
|
2880
3036
|
{
|
|
2881
3037
|
"id": "collect-github-release",
|
|
2882
3038
|
"path": "docs/kfd-agent-hub.md",
|
|
@@ -2892,6 +3048,16 @@
|
|
|
2892
3048
|
"path": "docs/release-passport.md",
|
|
2893
3049
|
"command": "buildchain collect github-release"
|
|
2894
3050
|
},
|
|
3051
|
+
{
|
|
3052
|
+
"id": "create",
|
|
3053
|
+
"path": "docs/cli.md",
|
|
3054
|
+
"command": "buildchain create github-artifact-attestation-policy"
|
|
3055
|
+
},
|
|
3056
|
+
{
|
|
3057
|
+
"id": "create",
|
|
3058
|
+
"path": "docs/github-artifact-attestation.md",
|
|
3059
|
+
"command": "buildchain create github-artifact-attestation-policy"
|
|
3060
|
+
},
|
|
2895
3061
|
{
|
|
2896
3062
|
"id": "dev",
|
|
2897
3063
|
"path": "docs/cli.md",
|
|
@@ -3972,6 +4138,16 @@
|
|
|
3972
4138
|
"path": "docs/release-passport.md",
|
|
3973
4139
|
"command": "buildchain verify artifact"
|
|
3974
4140
|
},
|
|
4141
|
+
{
|
|
4142
|
+
"id": "verify-github-artifact-attestation",
|
|
4143
|
+
"path": "docs/cli.md",
|
|
4144
|
+
"command": "buildchain verify github-artifact-attestation"
|
|
4145
|
+
},
|
|
4146
|
+
{
|
|
4147
|
+
"id": "verify-github-artifact-attestation",
|
|
4148
|
+
"path": "docs/github-artifact-attestation.md",
|
|
4149
|
+
"command": "buildchain verify github-artifact-attestation"
|
|
4150
|
+
},
|
|
3975
4151
|
{
|
|
3976
4152
|
"id": "verify-infra-contract-evidence-bundle",
|
|
3977
4153
|
"path": "docs/cli.md",
|
|
@@ -4083,9 +4259,9 @@
|
|
|
4083
4259
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
4084
4260
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
4085
4261
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
4086
|
-
"cliRegistryDigest": "
|
|
4087
|
-
"workflowRegistryDigest": "
|
|
4088
|
-
"pageRegistryDigest": "
|
|
4262
|
+
"cliRegistryDigest": "0be723caa314a36a1a36b03522527eb5b13e9b741e6566ff7f6ee06958df02ca",
|
|
4263
|
+
"workflowRegistryDigest": "01792ad09bcdcd3c12d018e6ee9613a09b5a1b87525d6f643a18f963f0d973a1",
|
|
4264
|
+
"pageRegistryDigest": "56583b14046754bc0c02c512602c4e1c4e9ecdf68e6e639fcab8d550c3e082b4"
|
|
4089
4265
|
},
|
|
4090
4266
|
"comparison": {
|
|
4091
4267
|
"missingCliRegistry": [],
|
|
@@ -167,6 +167,19 @@
|
|
|
167
167
|
"runnerPolicy": "unqualified",
|
|
168
168
|
"notes": ""
|
|
169
169
|
},
|
|
170
|
+
{
|
|
171
|
+
"workflowPath": ".github/workflows/artifact-signing-authority.yml",
|
|
172
|
+
"authorityClass": "evidence-publication",
|
|
173
|
+
"publicationCapable": false,
|
|
174
|
+
"capabilityIds": [],
|
|
175
|
+
"credentialMode": "none",
|
|
176
|
+
"publisherWorkflowMode": "fixed",
|
|
177
|
+
"publisherWorkflowPath": ".github/workflows/artifact-signing-authority.yml",
|
|
178
|
+
"environment": "",
|
|
179
|
+
"environmentMode": "fixed",
|
|
180
|
+
"runnerPolicy": "unqualified",
|
|
181
|
+
"notes": ""
|
|
182
|
+
},
|
|
170
183
|
{
|
|
171
184
|
"workflowPath": ".github/workflows/binary-distribution.yml",
|
|
172
185
|
"authorityClass": "evidence-publication",
|
|
@@ -310,6 +323,19 @@
|
|
|
310
323
|
"runnerPolicy": "unqualified",
|
|
311
324
|
"notes": ""
|
|
312
325
|
},
|
|
326
|
+
{
|
|
327
|
+
"workflowPath": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
328
|
+
"authorityClass": "governance-write",
|
|
329
|
+
"publicationCapable": false,
|
|
330
|
+
"capabilityIds": [],
|
|
331
|
+
"credentialMode": "none",
|
|
332
|
+
"publisherWorkflowMode": "fixed",
|
|
333
|
+
"publisherWorkflowPath": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
334
|
+
"environment": "",
|
|
335
|
+
"environmentMode": "fixed",
|
|
336
|
+
"runnerPolicy": "unqualified",
|
|
337
|
+
"notes": ""
|
|
338
|
+
},
|
|
313
339
|
{
|
|
314
340
|
"workflowPath": ".github/workflows/dev-merge-queue-governance.yml",
|
|
315
341
|
"authorityClass": "governance-write",
|
|
@@ -336,6 +362,21 @@
|
|
|
336
362
|
"runnerPolicy": "unqualified",
|
|
337
363
|
"notes": ""
|
|
338
364
|
},
|
|
365
|
+
{
|
|
366
|
+
"workflowPath": ".github/workflows/github-artifact-attestation.yml",
|
|
367
|
+
"authorityClass": "evidence-publication",
|
|
368
|
+
"publicationCapable": true,
|
|
369
|
+
"capabilityIds": [
|
|
370
|
+
"github-artifact-attestation"
|
|
371
|
+
],
|
|
372
|
+
"credentialMode": "oidc",
|
|
373
|
+
"publisherWorkflowMode": "caller-bound",
|
|
374
|
+
"publisherWorkflowPath": ".github/workflows/github-artifact-attestation.yml",
|
|
375
|
+
"environment": "consumer-defined",
|
|
376
|
+
"environmentMode": "caller-bound",
|
|
377
|
+
"runnerPolicy": "qualified-measured",
|
|
378
|
+
"notes": ""
|
|
379
|
+
},
|
|
339
380
|
{
|
|
340
381
|
"workflowPath": ".github/workflows/github-governance-audit.yml",
|
|
341
382
|
"authorityClass": "governance-write",
|
|
@@ -575,7 +616,8 @@
|
|
|
575
616
|
"path": ".github/workflows/.release-candidate-promote.yml",
|
|
576
617
|
"signals": [
|
|
577
618
|
"write-permission",
|
|
578
|
-
"oidc"
|
|
619
|
+
"oidc",
|
|
620
|
+
"environment"
|
|
579
621
|
],
|
|
580
622
|
"classified": true
|
|
581
623
|
},
|
|
@@ -648,6 +690,18 @@
|
|
|
648
690
|
],
|
|
649
691
|
"classified": true
|
|
650
692
|
},
|
|
693
|
+
{
|
|
694
|
+
"path": ".github/workflows/artifact-signing-authority.yml",
|
|
695
|
+
"signals": [
|
|
696
|
+
"environment"
|
|
697
|
+
],
|
|
698
|
+
"classified": true
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"path": ".github/workflows/auditable-demo-media-profile-qualification.yml",
|
|
702
|
+
"signals": [],
|
|
703
|
+
"classified": false
|
|
704
|
+
},
|
|
651
705
|
{
|
|
652
706
|
"path": ".github/workflows/binary-distribution.yml",
|
|
653
707
|
"signals": [
|
|
@@ -745,6 +799,13 @@
|
|
|
745
799
|
"signals": [],
|
|
746
800
|
"classified": false
|
|
747
801
|
},
|
|
802
|
+
{
|
|
803
|
+
"path": ".github/workflows/dev-alpha-candidate-patrol.yml",
|
|
804
|
+
"signals": [
|
|
805
|
+
"write-permission"
|
|
806
|
+
],
|
|
807
|
+
"classified": true
|
|
808
|
+
},
|
|
748
809
|
{
|
|
749
810
|
"path": ".github/workflows/dev-merge-queue-governance.yml",
|
|
750
811
|
"signals": [],
|
|
@@ -757,6 +818,15 @@
|
|
|
757
818
|
],
|
|
758
819
|
"classified": true
|
|
759
820
|
},
|
|
821
|
+
{
|
|
822
|
+
"path": ".github/workflows/github-artifact-attestation.yml",
|
|
823
|
+
"signals": [
|
|
824
|
+
"write-permission",
|
|
825
|
+
"oidc",
|
|
826
|
+
"environment"
|
|
827
|
+
],
|
|
828
|
+
"classified": true
|
|
829
|
+
},
|
|
760
830
|
{
|
|
761
831
|
"path": ".github/workflows/github-governance-audit.yml",
|
|
762
832
|
"signals": [
|
|
@@ -888,5 +958,5 @@
|
|
|
888
958
|
"classified": false
|
|
889
959
|
}
|
|
890
960
|
],
|
|
891
|
-
"registryDigest": "
|
|
961
|
+
"registryDigest": "0f4705fb7b2afcb72e9136dac44eac7fc47d9440330aa3c72a8ae8bd8f3339c3"
|
|
892
962
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-publication-release-registry",
|
|
4
|
-
"generatedAt": "2026-07-
|
|
5
|
-
"publishedAt": "2026-07-
|
|
4
|
+
"generatedAt": "2026-07-28T18:18:43.092Z",
|
|
5
|
+
"publishedAt": "2026-07-28T18:18:43.092Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "6d22340e3c2ab0202ce8d830cf1f85400ada5ae7",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"package": {
|
|
34
34
|
"name": "@kungfu-tech/buildchain",
|
|
35
|
-
"version": "3.0.2-alpha.
|
|
35
|
+
"version": "3.0.2-alpha.10",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"evidenceAssets": [
|
|
46
46
|
"publish evidence JSON",
|
|
47
47
|
"buildchain.release.json",
|
|
48
|
-
"release passport assets"
|
|
48
|
+
"release passport assets",
|
|
49
|
+
"GitHub artifact attestation Sigstore bundle and Buildchain evidence JSON"
|
|
49
50
|
],
|
|
50
51
|
"owner": "promote-buildchain-ref"
|
|
51
52
|
},
|
|
@@ -14,9 +14,14 @@
|
|
|
14
14
|
"./core": "./packages/core/index.js",
|
|
15
15
|
"./artifact-passport": "./packages/core/artifact-passport.js",
|
|
16
16
|
"./artifact-verification-envelope": "./packages/core/artifact-verification-envelope.js",
|
|
17
|
+
"./github-artifact-attestation": "./packages/core/github-artifact-attestation.js",
|
|
18
|
+
"./artifact-signing": "./packages/core/artifact-signing.js",
|
|
19
|
+
"./artifact-signing-result": "./packages/core/artifact-signing-result.js",
|
|
20
|
+
"./detached-artifact-signature": "./packages/core/detached-artifact-signature.js",
|
|
17
21
|
"./anchored-version-material": "./packages/core/anchored-version-material.js",
|
|
18
22
|
"./buildchain-contract": "./packages/core/buildchain-contract.js",
|
|
19
23
|
"./candidate-timeline": "./packages/core/candidate-timeline.js",
|
|
24
|
+
"./channel-candidate": "./packages/core/channel-candidate.js",
|
|
20
25
|
"./cache-evidence": "./packages/core/cache-evidence.js",
|
|
21
26
|
"./controller-evidence": "./packages/core/controller-evidence.js",
|
|
22
27
|
"./diagnostics": "./packages/core/diagnostics.js",
|