From 2feaaef65fe2921ef6fb288fe4aa050626443727 Mon Sep 17 00:00:00 2001 From: Luca Favini Date: Sun, 3 Mar 2024 13:19:10 +0100 Subject: [PATCH] repo: update CI/CD scripts --- .github/workflows/lint.yml | 2 +- .github/workflows/version.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 53a97e0..62adf57 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: '19.x' + node-version: 20 - name: Lint run: | cd frontend diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 1f837d2..438f7f9 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -39,7 +39,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: 19 + node-version: 20 - name: Setup git run: | git config user.email "$(git log -1 --pretty=format:%ae)" diff --git a/Dockerfile b/Dockerfile index 93f9b3f..3a9ce2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine +FROM node:20-alpine WORKDIR /app