From d30b53f4eebcbc9941c35a37fbe6ee158161124d Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sat, 28 Oct 2023 15:00:25 +0530 Subject: [PATCH] chore: update base node version --- .github/workflows/clippy-fmt.yml | 2 +- .github/workflows/linux.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/clippy-fmt.yml b/.github/workflows/clippy-fmt.yml index 638bebf4..9332b783 100644 --- a/.github/workflows/clippy-fmt.yml +++ b/.github/workflows/clippy-fmt.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "18.0.0" + node-version: "20.0.0" - name: Build frontend run: make frontend diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index fc1eb676..bceb6372 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -84,7 +84,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "18.0.0" + node-version: "20.0.0" - uses: actions-rust-lang/setup-rust-toolchain@v1 diff --git a/Dockerfile b/Dockerfile index 5b1b7402..9e3398aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: 2023 Aravinth Manivannan # # SPDX-License-Identifier: AGPL-3.0-or-later -FROM node:18.0.0 as frontend +FROM node:20 as frontend RUN set -ex; \ apt-get update; \ DEBIAN_FRONTEND=noninteractive \