Skip to content

Commit a7c0a75

Browse files
author
vitalie
committed
Upgrade Ruby to v2.5.9
1 parent 725e7f6 commit a7c0a75

6 files changed

+10
-10
lines changed

.ruby-gemset

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
travis-migrations

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.3
1+
ruby-2.5.9

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cache:
1313
directories:
1414
- vendor/bundle
1515

16-
rvm: "2.5.3"
16+
rvm: "2.5.9"
1717

1818
env:
1919
- RAILS_ENV=test

Dockerfile

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
FROM ruby:2.5.3
1+
FROM ruby:2.5.9
22

33
LABEL maintainer Travis CI GmbH <[email protected]>
44

5-
RUN apt update && \
6-
apt install -qq -y --no-install-recommends libgnutls30 && \
7-
apt-key adv --fetch-keys 'https://www.postgresql.org/media/keys/ACCC4CF8.asc' && \
8-
echo "deb http://apt.postgresql.org/pub/repos/apt stretch-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
5+
RUN apt-key adv --fetch-keys 'https://www.postgresql.org/media/keys/ACCC4CF8.asc' && \
6+
echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
97
apt update && \
8+
apt upgrade -y && \
109
apt install -qq -y --no-install-recommends --fix-missing \
11-
libpq-dev postgresql-client-9.6 && \
10+
postgresql-client-9.6 && \
1211
rm -rf /var/lib/apt/lists/*
1312

1413
WORKDIR /travis-migrations

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
ruby '2.5.3'
3+
ruby '2.5.9'
44

55
gem 'rails', '~> 5.2'
66
gem 'pg', '~> 1.0'

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ DEPENDENCIES
144144
s3
145145

146146
RUBY VERSION
147-
ruby 2.5.3p105
147+
ruby 2.5.9p229
148148

149149
BUNDLED WITH
150150
1.17.3

0 commit comments

Comments
 (0)