diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index afad8b368..3be813d4e 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -3,6 +3,9 @@ name: Documentation on: push: branches: [ "master" ] + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: documentation: diff --git a/.github/workflows/package-tests-linux.yml b/.github/workflows/package-tests-linux.yml index 933ab177b..e8064fa0f 100644 --- a/.github/workflows/package-tests-linux.yml +++ b/.github/workflows/package-tests-linux.yml @@ -144,7 +144,10 @@ jobs: steps: - name: Checkout the latest code uses: actions/checkout@v2 - + - name: Setup NodeJS + uses: actions/setup-node@v3 + with: + node-version: 16 - name: Install Dependencies run: yarn install || yarn install