From dc689f0391a6efec0b0b03aca0b1441ef96a1b46 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Tue, 24 May 2022 12:57:15 +0800 Subject: [PATCH] fix: bump to node 16 to include >= npm 7 --- .github/workflows/ci-cd.yml | 24 ++++++++++++------------ .github/workflows/publish-blog.yml | 2 +- .github/workflows/publish-dev-docs.yml | 2 +- .github/workflows/publish-docs.yml | 2 +- .github/workflows/publish-noco-i18n.yml | 2 +- .github/workflows/publish-prev-docs.yml | 2 +- .github/workflows/release-docker.yml | 2 +- .github/workflows/release-draft.yml | 2 +- .github/workflows/release-npm.yml | 2 +- .github/workflows/update-sdk-path.yml | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 88af4f801d..b181b02e52 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -70,7 +70,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -115,7 +115,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -160,7 +160,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -205,7 +205,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -250,7 +250,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -295,7 +295,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -340,7 +340,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -385,7 +385,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -430,7 +430,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -475,7 +475,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: @@ -520,7 +520,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - name: Checkout uses: actions/checkout@v2 with: diff --git a/.github/workflows/publish-blog.yml b/.github/workflows/publish-blog.yml index 6e03e3c564..00f770b97b 100644 --- a/.github/workflows/publish-blog.yml +++ b/.github/workflows/publish-blog.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Build blogs run: | cd packages/noco-blog diff --git a/.github/workflows/publish-dev-docs.yml b/.github/workflows/publish-dev-docs.yml index 18002c62a1..1d04bb71d7 100644 --- a/.github/workflows/publish-dev-docs.yml +++ b/.github/workflows/publish-dev-docs.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Build docs run: | cd packages/noco-docs diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 795af68016..50075f7842 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Build docs run: | cd packages/noco-docs diff --git a/.github/workflows/publish-noco-i18n.yml b/.github/workflows/publish-noco-i18n.yml index ec347324da..012b93512a 100644 --- a/.github/workflows/publish-noco-i18n.yml +++ b/.github/workflows/publish-noco-i18n.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Build noco-i18n run: | cd packages/noco-i18n diff --git a/.github/workflows/publish-prev-docs.yml b/.github/workflows/publish-prev-docs.yml index 20f21817aa..55be9b93a7 100644 --- a/.github/workflows/publish-prev-docs.yml +++ b/.github/workflows/publish-prev-docs.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Build prev docs run: | cd packages/noco-docs-prev diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index c59925bf99..812617b6b3 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -46,7 +46,7 @@ jobs: working-directory: ./packages/nocodb strategy: matrix: - node-version: [14] + node-version: [16] steps: - name: Get Docker Repository id: get-docker-repository diff --git a/.github/workflows/release-draft.yml b/.github/workflows/release-draft.yml index 16a79de9c8..e1344f86f7 100644 --- a/.github/workflows/release-draft.yml +++ b/.github/workflows/release-draft.yml @@ -44,5 +44,5 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - run: "npx github-release-notes@0.17.2 release --token ${{ secrets.GITHUB_TOKEN }} --draft --tags ${{ github.event.inputs.tag || inputs.tag }}..${{ github.event.inputs.prev_tag || inputs.prev_tag }}" diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 19f872465d..bb71cc92fc 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -37,7 +37,7 @@ jobs: working-directory: ./packages/nocodb strategy: matrix: - node-version: [14] + node-version: [16] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/update-sdk-path.yml b/.github/workflows/update-sdk-path.yml index 346f0765a4..0e292aed0d 100644 --- a/.github/workflows/update-sdk-path.yml +++ b/.github/workflows/update-sdk-path.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14] + node-version: [16] steps: - name: Checkout uses: actions/checkout@v2