fix(actions): mark nested run-vociferate refs as local paths

This commit is contained in:
Micheal Wilkinson
2026-03-21 15:20:03 +00:00
parent 4714bfe272
commit 43827593e7
3 changed files with 4 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ runs:
- name: Extract changelog unreleased entries - name: Extract changelog unreleased entries
id: extract-changelog id: extract-changelog
if: steps.changelog-file.outputs.exists == 'true' if: steps.changelog-file.outputs.exists == 'true'
uses: ../run-vociferate uses: ./../run-vociferate
with: with:
root: ${{ github.workspace }} root: ${{ github.workspace }}
changelog: ${{ inputs.changelog }} changelog: ${{ inputs.changelog }}

View File

@@ -66,7 +66,7 @@ runs:
- name: Recommend version - name: Recommend version
id: recommend-version id: recommend-version
if: steps.normalize-version.outputs.value == '' if: steps.normalize-version.outputs.value == ''
uses: ../run-vociferate uses: ./../run-vociferate
with: with:
root: ${{ github.workspace }} root: ${{ github.workspace }}
version-file: ${{ inputs.version-file }} version-file: ${{ inputs.version-file }}
@@ -102,7 +102,7 @@ runs:
printf 'value=%s\n' "$(date -u +%F)" >> "$GITHUB_OUTPUT" printf 'value=%s\n' "$(date -u +%F)" >> "$GITHUB_OUTPUT"
- name: Prepare release files - name: Prepare release files
uses: ../run-vociferate uses: ./../run-vociferate
with: with:
root: ${{ github.workspace }} root: ${{ github.workspace }}
version-file: ${{ inputs.version-file }} version-file: ${{ inputs.version-file }}

View File

@@ -65,7 +65,7 @@ runs:
- name: Extract release notes - name: Extract release notes
id: extract-notes id: extract-notes
uses: ../run-vociferate uses: ./../run-vociferate
with: with:
root: ${{ github.workspace }} root: ${{ github.workspace }}
changelog: ${{ inputs.changelog }} changelog: ${{ inputs.changelog }}