From c7276ae50ec2ef78e763e90ce00ce31c1a3a40c8 Mon Sep 17 00:00:00 2001 From: Chris Fenner Date: Tue, 10 Sep 2024 20:04:14 -0700 Subject: [PATCH] use pandoc action from pandoc repo instead of local path --- .github/workflows/render.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/render.yml b/.github/workflows/render.yml index 7545290..bf3efc6 100644 --- a/.github/workflows/render.yml +++ b/.github/workflows/render.yml @@ -79,7 +79,7 @@ jobs: # Render the document with diffs in the 'pr' mode. - name: Render if: inputs.workflow == 'pr' - uses: ./.github/actions/render + uses: trustedcomputinggroup/pandoc/.github/actions/render with: input-md: ${{ inputs.input }} output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }} @@ -90,7 +90,7 @@ jobs: # Render the document with diffs in the 'manual' mode. - name: Render if: inputs.workflow == 'manual' - uses: ./.github/actions/render + uses: trustedcomputinggroup/pandoc/.github/actions/render with: input-md: ${{ inputs.input }} output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }} @@ -99,7 +99,7 @@ jobs: # Render the document without diffs in other modes. - name: Render if: inputs.workflow != 'pr' && inputs.workflow != 'manual' - uses: ./.github/actions/render + uses: trustedcomputinggroup/pandoc/.github/actions/render with: input-md: ${{ inputs.input }} output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}