From 5a01ef08b1aae1c059380fa6dc107877a310b34e Mon Sep 17 00:00:00 2001 From: steve richards Date: Wed, 9 Jun 2021 13:44:54 +0100 Subject: [PATCH] Update job to use node version 12 (#3011) Signed-off-by: Steve Richards --- .github/workflows/mkdocs-manual.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/mkdocs-manual.yml b/.github/workflows/mkdocs-manual.yml index 29e359a02c..f3f1f11fd0 100644 --- a/.github/workflows/mkdocs-manual.yml +++ b/.github/workflows/mkdocs-manual.yml @@ -9,6 +9,9 @@ jobs: build: name: Manual update to sync Tag with Master runs-on: ubuntu-latest + strategy: + matrix: + node-version: [12.x] steps: - name: Set up Python 3.7 uses: actions/setup-python@v2 @@ -26,6 +29,11 @@ jobs: with: fetch-depth: 0 ref: '${{ github.event.inputs.version }}' + + - name: Using Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} - name: Generate Extensions API Reference using typedocs run: |