Skip to content

Commit e4c4708

Browse files
Fix relative paths in k9-svc root workflows
Fix relative paths from ../ to ../../ for depth-1 directory: - k9-svc/.github/workflows/ Part of estate-wide CI/CD deduplication. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
1 parent f8fc51e commit e4c4708

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

k9-svc/.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ permissions:
1818

1919
jobs:
2020
analyze-js:
21-
uses: ../.github/workflows/codeql-reusable.yml
21+
uses: ../../.github/workflows/codeql-reusable.yml
2222
with:
2323
language: javascript-typescript

k9-svc/.github/workflows/governance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ permissions:
2323

2424
jobs:
2525
governance:
26-
uses: ../.github/workflows/governance-reusable.yml
26+
uses: ../../.github/workflows/governance-reusable.yml

k9-svc/.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ permissions:
1717

1818
jobs:
1919
scan:
20-
uses: ../.github/workflows/hypatia-scan-reusable.yml
20+
uses: ../../.github/workflows/hypatia-scan-reusable.yml
2121
secrets: inherit

k9-svc/.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ permissions:
1313

1414
jobs:
1515
scorecard:
16-
uses: ../.github/workflows/scorecard-reusable.yml
16+
uses: ../../.github/workflows/scorecard-reusable.yml

0 commit comments

Comments
 (0)