From bb82ba91442006592803b8dfbef5b5c2766cf040 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Thu, 18 Mar 2021 23:09:38 +1100 Subject: [PATCH] Update --- .github/workflows/build.yml | 4 ++-- Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cc7ae416..cb6047046 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,11 +33,11 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 - with: { node-version: '12.x' } + with: { node-version: '14.x' } - name: Use Ruby uses: actions/setup-ruby@v1 - with: { ruby-version: '2.7' } + with: { ruby-version: '3.0' } - name: Setup dependencies run: | diff --git a/Dockerfile b/Dockerfile index 817e26443..38d40e416 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM ruby:2.7.1 -RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - +FROM ruby:3.0.0 +RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - 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 apt-get update -qq && apt-get install -qq --no-install-recommends \