This commit is contained in:
Rico Sta. Cruz 2021-03-18 23:09:38 +11:00
parent 22f920489a
commit bb82ba9144
2 changed files with 4 additions and 4 deletions

View File

@ -33,11 +33,11 @@ jobs:
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: { node-version: '12.x' } with: { node-version: '14.x' }
- name: Use Ruby - name: Use Ruby
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: { ruby-version: '2.7' } with: { ruby-version: '3.0' }
- name: Setup dependencies - name: Setup dependencies
run: | run: |

View File

@ -1,5 +1,5 @@
FROM ruby:2.7.1 FROM ruby:3.0.0
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - 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 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 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 \ RUN apt-get update -qq && apt-get install -qq --no-install-recommends \