This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch run-docs-action-on-node-16 in repository https://gitbox.apache.org/repos/asf/superset.git
commit a9647b90f40ae47ecc08e8b8801a210fa794f895 Author: Evan Rusackas <[email protected]> AuthorDate: Mon Jan 29 14:54:37 2024 -0700 chore(actions): run docs actions on Node 16 to conform with the regular repo --- .github/workflows/superset-docs-deploy.yml | 6 +++++- .github/workflows/superset-docs-verify.yml | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/superset-docs-deploy.yml b/.github/workflows/superset-docs-deploy.yml index f474a88157..2232df9244 100644 --- a/.github/workflows/superset-docs-deploy.yml +++ b/.github/workflows/superset-docs-deploy.yml @@ -25,7 +25,7 @@ jobs: needs: config if: needs.config.outputs.has-secrets name: Build & Deploy - runs-on: ubuntu-20.04 + runs-on: "ubuntu-latest" defaults: run: working-directory: docs @@ -35,6 +35,10 @@ jobs: with: persist-credentials: false submodules: recursive + - name: Set up Node.js 16 + uses: actions/setup-node@v2 + with: + node-version: '16' - name: yarn install run: | yarn install --check-cache diff --git a/.github/workflows/superset-docs-verify.yml b/.github/workflows/superset-docs-verify.yml index 26427c54d9..22433b8646 100644 --- a/.github/workflows/superset-docs-verify.yml +++ b/.github/workflows/superset-docs-verify.yml @@ -18,6 +18,10 @@ jobs: with: persist-credentials: false submodules: recursive + - name: Set up Node.js 16 + uses: actions/setup-node@v2 + with: + node-version: '16' - name: yarn install run: | yarn install --check-cache
