chore: complete tech log product identity

This commit is contained in:
DongHyeonka
2026-08-13 18:53:52 +09:00
parent c2e35dd8ad
commit 002ba3624e
21 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ const ARTIFACT_SCHEMA_DEFINITIONS = Object.freeze([
},
{
relativePath: "schemas/artifacts/dependency-inventory.schema.json",
id: "https://clean-architecture-frontend.local/schemas/dependency-inventory.schema.json",
id: "https://tech-log-frontend.local/schemas/dependency-inventory.schema.json",
schema: dependencyInventoryArtifactSchema,
},
{
@@ -31,7 +31,7 @@ const ARTIFACT_SCHEMA_DEFINITIONS = Object.freeze([
},
{
relativePath: "schemas/artifacts/supply-chain-verification.schema.json",
id: "https://clean-architecture-frontend.local/schemas/supply-chain-verification.schema.json",
id: "https://tech-log-frontend.local/schemas/supply-chain-verification.schema.json",
schema: supplyChainVerificationArtifactSchema,
},
] as const);
+1 -1
View File
@@ -76,7 +76,7 @@ export function renderCiWorkflow(contract: CiGateContract): string {
"",
"on:",
" push:",
" branches: [develop]",
" branches: [main]",
' tags: ["v*"]',
" pull_request:",
" workflow_dispatch:",
+1 -1
View File
@@ -270,7 +270,7 @@ const provenance = {
],
},
runDetails: {
builder: { id: "local:clean-architecture-frontend-template" },
builder: { id: "local:tech-log-frontend" },
metadata: { invocationId: "LOCAL_UNSIGNED" },
},
materials: {
+1 -1
View File
@@ -304,7 +304,7 @@ export async function verifyLocalSupplyChainEvidence(
}
export const LOCAL_EVIDENCE_VERIFIER_ID =
"clean-architecture-frontend-template/local-evidence-verifier";
"tech-log-frontend/local-evidence-verifier";
export const LOCAL_EVIDENCE_VERIFIER_VERSION = "1";
export {
LOCAL_EVIDENCE_POLICY_INPUT_PATHS,
+1 -1
View File
@@ -10,7 +10,7 @@ import {
export const PROVIDER_FUTURE_SKEW_MS = 5 * 60 * 1_000;
export const PROVIDER_MAX_LIFETIME_MS = 2 * 60 * 60 * 1_000;
export const PROMOTION_VERIFIER_ID =
"clean-architecture-frontend-template/promotion-verifier";
"tech-log-frontend/promotion-verifier";
export const PROMOTION_VERIFIER_VERSION = "3";
const sha256 = z.string().regex(/^[a-f0-9]{64}$/u);