From c3ab7f8b0ed0f696389a30236c5146004f22df0c Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sun, 2 Jul 2023 19:57:29 +0530 Subject: [PATCH] chore: use node v18.0.0 --- .github/workflows/clippy-fmt.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/linux.yml | 2 +- Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clippy-fmt.yml b/.github/workflows/clippy-fmt.yml index f100adb4..16212b0e 100644 --- a/.github/workflows/clippy-fmt.yml +++ b/.github/workflows/clippy-fmt.yml @@ -63,7 +63,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "14.x" + node-version: "18.0.0" - name: Build frontend run: make frontend diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 62cca4cd..3ac1d7d5 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -90,7 +90,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.0.0" - name: Install ${{ matrix.version }} uses: actions-rs/toolchain@v1 diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 328d56a4..1bc88f99 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -95,7 +95,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.0.0" - name: Install ${{ matrix.version }} uses: actions-rs/toolchain@v1 diff --git a/Dockerfile b/Dockerfile index 66342321..4dcb3c8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.0.0 as frontend +FROM node:18.0.0 as frontend RUN set -ex; \ apt-get update; \ DEBIAN_FRONTEND=noninteractive \