Skip to content

Commit

Permalink
Choosing node version explicitely
Browse files Browse the repository at this point in the history
  - Nov 29, 2021 nodejs was upgraded to version 16 on
    GH workers causing the crash of doc generation
  • Loading branch information
galleon committed Dec 3, 2021
1 parent 37cf144 commit fe50cb9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: actions/setup-node@v2
with:
node-version: '14'

- name: Download artifacts
uses: actions/download-artifact@v1.0.0
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@ jobs:
with:
python-version: "3.7"

- uses: actions/setup-node@v2
with:
node-version: '14'

- name: Download artifacts
uses: actions/download-artifact@v1.0.0
with:
Expand Down

0 comments on commit fe50cb9

Please sign in to comment.