From e304a914cc0b27be2934dbea8013c4690f2a0b7e Mon Sep 17 00:00:00 2001 From: Louis Lambeau Date: Fri, 22 Dec 2023 11:53:53 +0100 Subject: [PATCH] Upgrade to node 18 --- .github/workflows/integration.yml | 2 +- .github/workflows/release-packages.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6f3e168..c1743c3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -24,7 +24,7 @@ jobs: - name: Install node uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '18.x' - name: Linting id: linting diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index f909400..96efbd9 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' always-auth: true diff --git a/Dockerfile b/Dockerfile index 30d0f9a..bed5f20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-alpine as builder +FROM node:18-alpine as builder WORKDIR /arnavon