From 616e9530659c2db0cfc31d46c8d83f0b66682286 Mon Sep 17 00:00:00 2001 From: Julius Zeidler Date: Mon, 19 Feb 2024 22:45:07 +0100 Subject: [PATCH] use node 20 in gh actions --- .github/workflows/deploy-docs.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 2daeae09..a5b42bf3 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -1,4 +1,3 @@ - name: Deploy Docs on: @@ -18,12 +17,10 @@ jobs: # if your docs needs submodules, uncomment the following line # submodules: true - - - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 cache: yarn - name: Install Deps @@ -45,4 +42,3 @@ jobs: # This is the branch where the docs are deployed to branch: gh-pages folder: docs/.vuepress/dist -