From 817ee1bdb85678e3e9fbfe1ed2042609bb5f0cb0 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 6 Nov 2022 13:20:14 +0100 Subject: [PATCH] Switch to Node 14 --- .docker/ruby/Dockerfile | 4 ++-- .github/workflows/retrospring.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.docker/ruby/Dockerfile b/.docker/ruby/Dockerfile index f9480dc2..205ec80a 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_12.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN apt-get update -qq \ && apt-get install -y --no-install-recommends build-essential \ @@ -47,4 +47,4 @@ COPY . /app ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 -CMD ["rails", "server", "-b", "0.0.0.0"] \ No newline at end of file +CMD ["rails", "server", "-b", "0.0.0.0"] diff --git a/.github/workflows/retrospring.yml b/.github/workflows/retrospring.yml index d0147b68..1dd575e5 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 12 + - name: Set up Node 14 uses: actions/setup-node@v3 with: - node-version: '12' + node-version: '14' - name: Copy default configuration run: | cp config/database.yml.postgres config/database.yml