From fb450b0758970d0d72df289534a8c7dada937948 Mon Sep 17 00:00:00 2001 From: security-auditor Date: Thu, 7 May 2026 00:59:45 -0700 Subject: [PATCH] fix(ci): lowercase 'molecule-ai/' in cross-repo workflow refs Gitea is case-sensitive on owner slugs; canonical is lowercase `molecule-ai/...`. Mixed-case `Molecule-AI/...` refs fail-at-0s when the runner tries to resolve the cross-repo workflow / checkout. Same fix as molecule-controlplane#12. Mechanical case-correction; no behavior change beyond making CI resolve again. Refs: internal#46 Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- .github/workflows/publish-image.yml | 2 +- .github/workflows/secret-scan.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b29594..e5cc700 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: [push, pull_request] jobs: validate: - uses: Molecule-AI/molecule-ci/.github/workflows/validate-workspace-template.yml@main + uses: molecule-ai/molecule-ci/.github/workflows/validate-workspace-template.yml@main tests: name: Adapter unit tests diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 54ce7cc..c23da53 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -33,7 +33,7 @@ permissions: jobs: publish: - uses: Molecule-AI/molecule-ci/.github/workflows/publish-template-image.yml@main + uses: molecule-ai/molecule-ci/.github/workflows/publish-template-image.yml@main secrets: inherit with: # When the cascade fires, client_payload.runtime_version is the diff --git a/.github/workflows/secret-scan.yml b/.github/workflows/secret-scan.yml index 4272f18..9e2976e 100644 --- a/.github/workflows/secret-scan.yml +++ b/.github/workflows/secret-scan.yml @@ -19,4 +19,4 @@ on: jobs: secret-scan: - uses: Molecule-AI/molecule-core/.github/workflows/secret-scan.yml@staging + uses: molecule-ai/molecule-core/.github/workflows/secret-scan.yml@staging -- 2.45.2