From 66886f45e6c0fd1f4d9627b0254a689cbda74e64 Mon Sep 17 00:00:00 2001 From: Katrina Prosise Date: Wed, 30 Oct 2024 05:28:04 -0400 Subject: [PATCH] Updates to github action The action for the linter now requires dependencies to be installed for markup languages other than markdown. Unable to easily test locally, but does not effect ability to build or publish docs. No related issue/ticket, general maintenance task Signed-off-by: Katrina Prosise --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 064040a6b..18fdd6531 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,9 @@ jobs: name: runner / vale runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Install docutils + run: sudo apt-get install -y docutils + - uses: actions/checkout@v4 - uses: errata-ai/vale-action@reviewdog with: reporter: github-pr-check