Skip to content
This repository was archived by the owner on Feb 8, 2022. It is now read-only.

Commit 5149388

Browse files
committed
Update dependecies & CI ruby version
1 parent 99036d9 commit 5149388

File tree

3 files changed

+44
-43
lines changed

3 files changed

+44
-43
lines changed

.gitlab-ci.yml

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# This file is a template, and might need editing before it works on your project.
2-
# Template project: https://gitlab.com/pages/jekyll
3-
# Docs: https://docs.gitlab.com/ce/pages/
4-
image: ruby:2.5
1+
# https://gitlab.com/pages/jekyll/-/blob/master/.gitlab-ci.yml
2+
image: ruby:2.7
53

64
variables:
75
JEKYLL_ENV: production
6+
LC_ALL: C.UTF-8
87

98
before_script:
10-
- gem install bundler -v 2.0.2
11-
- bundle install
9+
- gem install bundler
10+
- bundle install
1211

1312
test:
1413
stage: test
@@ -17,8 +16,8 @@ test:
1716
artifacts:
1817
paths:
1918
- test
20-
except:
21-
- master
19+
rules:
20+
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
2221

2322
pages:
2423
stage: deploy
@@ -27,6 +26,5 @@ pages:
2726
artifacts:
2827
paths:
2928
- public
30-
only:
31-
- master
32-
29+
rules:
30+
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH

Gemfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source 'https://rubygems.org'
2-
gem 'jekyll'
3-
gem 'jekyll-seo-tag'
4-
gem 'jekyll-paginate'
2+
3+
gem "jekyll", "~> 4.2"
4+
gem 'jekyll-seo-tag', "~> 2.8"
5+
gem 'jekyll-paginate', "~> 1.1"

Gemfile.lock

+31-29
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,72 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.7.0)
4+
addressable (2.8.0)
55
public_suffix (>= 2.0.2, < 5.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.5)
8-
em-websocket (0.5.1)
7+
concurrent-ruby (1.1.9)
8+
em-websocket (0.5.3)
99
eventmachine (>= 0.12.9)
10-
http_parser.rb (~> 0.6.0)
10+
http_parser.rb (~> 0)
1111
eventmachine (1.2.7)
12-
ffi (1.11.3)
12+
ffi (1.15.5)
1313
forwardable-extended (2.6.0)
14-
http_parser.rb (0.6.0)
15-
i18n (1.7.0)
14+
http_parser.rb (0.8.0)
15+
i18n (1.9.1)
1616
concurrent-ruby (~> 1.0)
17-
jekyll (4.0.0)
17+
jekyll (4.2.1)
1818
addressable (~> 2.4)
1919
colorator (~> 1.0)
2020
em-websocket (~> 0.5)
21-
i18n (>= 0.9.5, < 2)
21+
i18n (~> 1.0)
2222
jekyll-sass-converter (~> 2.0)
2323
jekyll-watch (~> 2.0)
24-
kramdown (~> 2.1)
24+
kramdown (~> 2.3)
2525
kramdown-parser-gfm (~> 1.0)
2626
liquid (~> 4.0)
27-
mercenary (~> 0.3.3)
27+
mercenary (~> 0.4.0)
2828
pathutil (~> 0.9)
2929
rouge (~> 3.0)
3030
safe_yaml (~> 1.0)
31-
terminal-table (~> 1.8)
31+
terminal-table (~> 2.0)
3232
jekyll-paginate (1.1.0)
33-
jekyll-sass-converter (2.0.1)
33+
jekyll-sass-converter (2.1.0)
3434
sassc (> 2.0.1, < 3.0)
35-
jekyll-seo-tag (2.6.1)
36-
jekyll (>= 3.3, < 5.0)
35+
jekyll-seo-tag (2.8.0)
36+
jekyll (>= 3.8, < 5.0)
3737
jekyll-watch (2.2.1)
3838
listen (~> 3.0)
39-
kramdown (2.1.0)
39+
kramdown (2.3.1)
40+
rexml
4041
kramdown-parser-gfm (1.1.0)
4142
kramdown (~> 2.0)
4243
liquid (4.0.3)
43-
listen (3.2.0)
44+
listen (3.7.1)
4445
rb-fsevent (~> 0.10, >= 0.10.3)
4546
rb-inotify (~> 0.9, >= 0.9.10)
46-
mercenary (0.3.6)
47+
mercenary (0.4.0)
4748
pathutil (0.16.2)
4849
forwardable-extended (~> 2.6)
49-
public_suffix (4.0.1)
50-
rb-fsevent (0.10.3)
51-
rb-inotify (0.10.0)
50+
public_suffix (4.0.6)
51+
rb-fsevent (0.11.1)
52+
rb-inotify (0.10.1)
5253
ffi (~> 1.0)
53-
rouge (3.13.0)
54+
rexml (3.2.5)
55+
rouge (3.28.0)
5456
safe_yaml (1.0.5)
55-
sassc (2.2.1)
57+
sassc (2.4.0)
5658
ffi (~> 1.9)
57-
terminal-table (1.8.0)
59+
terminal-table (2.0.0)
5860
unicode-display_width (~> 1.1, >= 1.1.1)
59-
unicode-display_width (1.6.0)
61+
unicode-display_width (1.8.0)
6062

6163
PLATFORMS
6264
ruby
6365

6466
DEPENDENCIES
65-
jekyll
66-
jekyll-paginate
67-
jekyll-seo-tag
67+
jekyll (~> 4.2)
68+
jekyll-paginate (~> 1.1)
69+
jekyll-seo-tag (~> 2.8)
6870

6971
BUNDLED WITH
70-
2.0.2
72+
2.1.4

0 commit comments

Comments
 (0)