diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index d702e33be..d28cb6c74 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -19,7 +19,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - name: Install dependencies run: yarn # 👇 Adds Chromatic as a step in the workflow diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index a7e068807..6f1b7d4e4 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -17,7 +17,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - run: yarn global add @vue/cli@latest - run: yarn install - run: mv public/chain-manifests-dev.json public/chain-manifests.json diff --git a/.github/workflows/deploy-eos-dev.yml b/.github/workflows/deploy-eos-dev.yml index ec39fc326..cc1d16c49 100644 --- a/.github/workflows/deploy-eos-dev.yml +++ b/.github/workflows/deploy-eos-dev.yml @@ -21,7 +21,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - run: yarn global add @vue/cli@latest - run: yarn install - run: mv public/chain-manifests-dev.json public/chain-manifests.json diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index ed41955f2..a5057431b 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -15,7 +15,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - run: yarn global add @vue/cli@latest - run: yarn install - run: mv public/chain-manifests-prod.json public/chain-manifests.json diff --git a/.github/workflows/deploy.branch.yml-disabled b/.github/workflows/deploy.branch.yml-disabled index dd28c3c54..0fdfb02ab 100644 --- a/.github/workflows/deploy.branch.yml-disabled +++ b/.github/workflows/deploy.branch.yml-disabled @@ -116,7 +116,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - run: yarn global add @vue/cli@latest - run: yarn install - run: mv public/chain-manifests-prod.json public/chain-manifests.json diff --git a/package.json b/package.json index 837b76858..ce92d57ba 100644 --- a/package.json +++ b/package.json @@ -131,7 +131,7 @@ } }, "engines": { - "node": ">= 8.9.0", + "node": ">= 18", "npm": ">= 5.6.0", "yarn": ">= 1.6.0" },