From e3e45acf9f7f6202ef41e9c1039ab067df811da7 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 15 Oct 2023 13:13:52 +0200 Subject: [PATCH] Use Node 16 across the project --- .docker/ruby/Dockerfile | 2 +- .github/workflows/lint.yml | 8 ++++---- .github/workflows/retrospring.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.docker/ruby/Dockerfile b/.docker/ruby/Dockerfile index 205ec80a..6e6e33d2 100644 --- a/.docker/ruby/Dockerfile +++ b/.docker/ruby/Dockerfile @@ -8,7 +8,7 @@ ARG GID=1000 RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt-get update -qq \ && apt-get install -y --no-install-recommends build-essential \ diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 237b9882..297ca717 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -43,10 +43,10 @@ jobs: uses: tj-actions/changed-files@v39 with: files: "**/*.ts" - - name: Set up Node 14 + - name: Set up Node 16 uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' cache: 'yarn' if: steps.changed-files.outputs.any_changed == 'true' - name: Install node modules @@ -92,10 +92,10 @@ jobs: uses: tj-actions/changed-files@v39 with: files: "**/*.scss" - - name: Set up Node 14 + - name: Set up Node 16 uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' cache: 'yarn' if: steps.changed-files.outputs.any_changed == 'true' - name: Install node modules diff --git a/.github/workflows/retrospring.yml b/.github/workflows/retrospring.yml index e46aeeaa..4ab0ab64 100644 --- a/.github/workflows/retrospring.yml +++ b/.github/workflows/retrospring.yml @@ -48,10 +48,10 @@ jobs: uses: ruby/setup-ruby@v1 with: bundler-cache: true - - name: Set up Node 14 + - name: Set up Node 16 uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' cache: 'yarn' - name: Copy default configuration run: |