Skip to content

Commit 91568a4

Browse files
1 parent 8b71acc commit 91568a4

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- uses: actions/checkout@v2
1515

1616
- name: Set up Ruby
17-
uses: ruby/setup-ruby@e27aee156d42e38ff8a4c2fc97b125c4087cbcc7
17+
uses: ruby/setup-ruby@b00551441a6fa3d528f3443dbff264a934b6e316
1818
with:
19-
ruby-version: 2.6.6
19+
ruby-version: 3.0.2
2020
bundler-cache: true
2121

2222
- name: Install gems

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616

1717
# Setup Ruby - this needs to match the version in the Gemfile
1818
- name: Set up Ruby
19-
uses: ruby/setup-ruby@e27aee156d42e38ff8a4c2fc97b125c4087cbcc7
19+
uses: ruby/setup-ruby@b00551441a6fa3d528f3443dbff264a934b6e316
2020
with:
21-
ruby-version: 2.6.6
21+
ruby-version: 3.0.2
2222
bundler-cache: true
2323

2424
# Setup code climate

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.6.6
1+
ruby-3.0.2

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.5-alpine
1+
FROM ruby:3.0.2-alpine
22

33
RUN apk update && apk upgrade && \
44
apk add --no-cache bash git openssh && \
@@ -10,7 +10,7 @@ RUN wget -P /usr/local/bin https://github.com/exercism/tooling-webserver/release
1010
WORKDIR /opt/test-runner
1111

1212
COPY Gemfile Gemfile.lock ./
13-
RUN gem install bundler:2.1.4 && \
13+
RUN gem install bundler:2.2.29 && \
1414
bundle config set without 'development test' && \
1515
bundle install
1616

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ git_source(:github) do |repo_name|
55
"https://github.com/#{repo_name}.git"
66
end
77

8-
gem 'mandate'
8+
gem 'mandate', '~> 1.0.0.beta1'
99
gem 'rake'
10-
gem 'json'
10+
gem 'json', '~> 2.6.1'
1111
gem 'minitest', '~> 5.11.3'
1212

1313
gem 'parser'

Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
ast (2.4.1)
4+
ast (2.4.2)
55
coderay (1.1.3)
66
docile (1.3.2)
7-
json (2.2.0)
8-
mandate (0.3.0)
7+
json (2.6.1)
8+
mandate (1.0.0.beta1)
99
method_source (1.0.0)
1010
minitest (5.11.3)
1111
mocha (1.11.2)
1212
parallel (1.19.2)
13-
parser (2.7.1.4)
13+
parser (3.0.2.0)
1414
ast (~> 2.4.1)
1515
pry (0.13.1)
1616
coderay (~> 1.1)
@@ -46,8 +46,8 @@ PLATFORMS
4646
ruby
4747

4848
DEPENDENCIES
49-
json
50-
mandate
49+
json (~> 2.6.1)
50+
mandate (~> 1.0.0.beta1)
5151
minitest (~> 5.11.3)
5252
mocha
5353
parser
@@ -60,4 +60,4 @@ DEPENDENCIES
6060
simplecov (~> 0.17.0)
6161

6262
BUNDLED WITH
63-
2.1.4
63+
2.2.29

0 commit comments

Comments
 (0)