From 241f603ffe9896c7e558f95f52dc1b060794d785 Mon Sep 17 00:00:00 2001 From: Mircea Nistor Date: Wed, 2 Oct 2024 15:12:06 +0200 Subject: [PATCH] chore(ci): use node 20 in CI env --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63b2354..8873f3a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'yarn' - run: yarn install --frozen-lockfile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d62a850..9f85666 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: - name: 'Setup node with cache' uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'yarn' - run: yarn install --frozen-lockfile diff --git a/Dockerfile b/Dockerfile index 8302490..596ec05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM node:21.6.2 -LABEL maintainer="Mircea NISTOR " +LABEL maintainer="Mircea NISTOR " LABEL repository="git@github.com:uport-project/uport-did-driver.git" USER root