From 32327c6d72070d782b58573801ec7222c5d94939 Mon Sep 17 00:00:00 2001 From: Micheal Wilkinson Date: Sat, 21 Mar 2026 15:20:03 +0000 Subject: [PATCH] fix(actions): mark nested run-vociferate refs as local 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 c1f53eb..0481ee4 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 66c490a..ce097e0 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 500588b..f11b043 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 }}