From 00a1756f05c68ad0002f1f5c33ddd4e710a142c5 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 23:32:54 +0100 Subject: [PATCH 1/2] ensure we run on node 19 --- .github/workflows/test-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 20d6442..ea93015 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: npm-install run: npm install From 23ce59e72e9e90d3962173a6dc83254cbb4582d3 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 23:35:57 +0100 Subject: [PATCH 2/2] setup node 19 on the other two workflows aswell --- .github/workflows/test-lint.yml | 5 +++++ .github/workflows/vuepress-deploy.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index d670d6f..24e97fe 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: npm-install run: npm install diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index 2879067..e20cc8d 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -12,6 +12,11 @@ jobs: - name: Checkout uses: actions/checkout@master + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: vuepress-deploy uses: jenkey2011/vuepress-deploy@v1.8.1 env: