Skip to content

Commit c7276ae

Browse files
committed
use pandoc action from pandoc repo instead of local path
1 parent 8f79b56 commit c7276ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/render.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
# Render the document with diffs in the 'pr' mode.
8080
- name: Render
8181
if: inputs.workflow == 'pr'
82-
uses: ./.github/actions/render
82+
uses: trustedcomputinggroup/pandoc/.github/actions/render
8383
with:
8484
input-md: ${{ inputs.input }}
8585
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}
@@ -90,7 +90,7 @@ jobs:
9090
# Render the document with diffs in the 'manual' mode.
9191
- name: Render
9292
if: inputs.workflow == 'manual'
93-
uses: ./.github/actions/render
93+
uses: trustedcomputinggroup/pandoc/.github/actions/render
9494
with:
9595
input-md: ${{ inputs.input }}
9696
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}
@@ -99,7 +99,7 @@ jobs:
9999
# Render the document without diffs in other modes.
100100
- name: Render
101101
if: inputs.workflow != 'pr' && inputs.workflow != 'manual'
102-
uses: ./.github/actions/render
102+
uses: trustedcomputinggroup/pandoc/.github/actions/render
103103
with:
104104
input-md: ${{ inputs.input }}
105105
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}

0 commit comments

Comments
 (0)