From 1a7820940838f06ca05983d300beb31560a8dd43 Mon Sep 17 00:00:00 2001 From: Micheal Wilkinson Date: Sat, 21 Mar 2026 15:26:29 +0000 Subject: [PATCH] fix(actions): use repo-local run-vociferate paths --- decorate-pr/action.yml | 2 +- prepare/action.yml | 4 ++-- publish/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/decorate-pr/action.yml b/decorate-pr/action.yml index 0481ee4..96cbfbe 100644 --- a/decorate-pr/action.yml +++ b/decorate-pr/action.yml @@ -164,7 +164,7 @@ runs: - name: Extract changelog unreleased entries id: extract-changelog if: steps.changelog-file.outputs.exists == 'true' - uses: ./../run-vociferate + uses: ./run-vociferate with: root: ${{ github.workspace }} changelog: ${{ inputs.changelog }} diff --git a/prepare/action.yml b/prepare/action.yml index ce097e0..d87fe9d 100644 --- a/prepare/action.yml +++ b/prepare/action.yml @@ -66,7 +66,7 @@ runs: - name: Recommend version id: recommend-version if: steps.normalize-version.outputs.value == '' - uses: ./../run-vociferate + uses: ./run-vociferate with: root: ${{ github.workspace }} version-file: ${{ inputs.version-file }} @@ -102,7 +102,7 @@ runs: printf 'value=%s\n' "$(date -u +%F)" >> "$GITHUB_OUTPUT" - name: Prepare release files - uses: ./../run-vociferate + uses: ./run-vociferate with: root: ${{ github.workspace }} version-file: ${{ inputs.version-file }} diff --git a/publish/action.yml b/publish/action.yml index f11b043..2af2ea6 100644 --- a/publish/action.yml +++ b/publish/action.yml @@ -65,7 +65,7 @@ runs: - name: Extract release notes id: extract-notes - uses: ./../run-vociferate + uses: ./run-vociferate with: root: ${{ github.workspace }} changelog: ${{ inputs.changelog }}