From 60a0e825879195ade69854b471496dd616357c29 Mon Sep 17 00:00:00 2001 From: Micheal Wilkinson Date: Sat, 21 Mar 2026 15:29:37 +0000 Subject: [PATCH] fix(actions): use repo-root nested paths in run-vociferate --- run-vociferate/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-vociferate/action.yml b/run-vociferate/action.yml index 2f9c17b..9c3c08d 100644 --- a/run-vociferate/action.yml +++ b/run-vociferate/action.yml @@ -66,7 +66,7 @@ runs: - name: Run binary id: run-binary if: steps.resolve-runtime.outputs.use_binary == 'true' - uses: ./binary + uses: ./run-vociferate/binary with: root: ${{ inputs.root }} version-file: ${{ inputs.version-file }} @@ -81,7 +81,7 @@ runs: - name: Run source id: run-code if: steps.resolve-runtime.outputs.use_binary != 'true' - uses: ./code + uses: ./run-vociferate/code with: root: ${{ inputs.root }} version-file: ${{ inputs.version-file }}