Skip to content

Commit efa198e

Browse files
authored
Update dependencies (#108)
1 parent ab203aa commit efa198e

File tree

3 files changed

+24
-21
lines changed

3 files changed

+24
-21
lines changed

.github/workflows/pages.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
27+
with:
28+
show-progress: ''
2729
- name: Setup Ruby
2830
uses: ruby/setup-ruby@v1
2931
with:
@@ -32,7 +34,7 @@ jobs:
3234
cache-version: 0 # Increment this number if you need to re-download cached gems
3335
- name: Setup Pages
3436
id: pages
35-
uses: actions/configure-pages@v2
37+
uses: actions/configure-pages@v3
3638
- name: Build with Jekyll
3739
# Outputs to the './_site' directory by default
3840
run: |
@@ -42,7 +44,7 @@ jobs:
4244
env:
4345
JEKYLL_ENV: production
4446
- name: Upload artifact
45-
uses: actions/upload-pages-artifact@v1
47+
uses: actions/upload-pages-artifact@v2
4648

4749
deploy:
4850
if: github.ref == 'refs/heads/gh-pages'
@@ -54,4 +56,4 @@ jobs:
5456
steps:
5557
- name: Deploy to GitHub Pages
5658
id: deployment
57-
uses: actions/deploy-pages@v1
59+
uses: actions/deploy-pages@v2

docs/Gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
source 'https://rubygems.org'
22

3-
gem "jekyll", "~> 4.2" # installed by `gem jekyll`
4-
gem "webrick" # required when using Ruby >= 3
3+
gem "jekyll", "~> 4.3.2"
54

6-
gem "just-the-docs", "0.5.1"
5+
gem "just-the-docs", "0.6.2"
76

87
gem 'jekyll-titles-from-headings'

docs/Gemfile.lock

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.4)
4+
addressable (2.8.5)
55
public_suffix (>= 2.0.2, < 6.0)
66
colorator (1.1.0)
77
concurrent-ruby (1.2.2)
@@ -11,9 +11,9 @@ GEM
1111
eventmachine (1.2.7)
1212
ffi (1.15.5)
1313
forwardable-extended (2.6.0)
14-
google-protobuf (3.22.3-x86_64-linux)
14+
google-protobuf (3.24.3-x86_64-linux)
1515
http_parser.rb (0.8.0)
16-
i18n (1.13.0)
16+
i18n (1.14.1)
1717
concurrent-ruby (~> 1.0)
1818
jekyll (4.3.2)
1919
addressable (~> 2.4)
@@ -31,6 +31,8 @@ GEM
3131
safe_yaml (~> 1.0)
3232
terminal-table (>= 1.8, < 4.0)
3333
webrick (~> 1.7)
34+
jekyll-include-cache (0.2.1)
35+
jekyll (>= 3.7, < 5.0)
3436
jekyll-sass-converter (3.0.0)
3537
sass-embedded (~> 1.54)
3638
jekyll-seo-tag (2.8.0)
@@ -39,8 +41,9 @@ GEM
3941
jekyll (>= 3.3, < 5.0)
4042
jekyll-watch (2.2.1)
4143
listen (~> 3.0)
42-
just-the-docs (0.5.1)
44+
just-the-docs (0.6.2)
4345
jekyll (>= 3.8.5)
46+
jekyll-include-cache
4447
jekyll-seo-tag (>= 2.0)
4548
rake (>= 12.3.1)
4649
kramdown (2.4.0)
@@ -54,17 +57,17 @@ GEM
5457
mercenary (0.4.0)
5558
pathutil (0.16.2)
5659
forwardable-extended (~> 2.6)
57-
public_suffix (5.0.1)
60+
public_suffix (5.0.3)
5861
rake (13.0.6)
5962
rb-fsevent (0.11.2)
6063
rb-inotify (0.10.1)
6164
ffi (~> 1.0)
62-
rexml (3.2.5)
63-
rouge (4.1.0)
65+
rexml (3.2.6)
66+
rouge (4.1.3)
6467
safe_yaml (1.0.5)
65-
sass-embedded (1.62.1)
66-
google-protobuf (~> 3.21)
67-
rake (>= 10.0.0)
68+
sass-embedded (1.63.6)
69+
google-protobuf (~> 3.23)
70+
rake (>= 13.0.0)
6871
terminal-table (3.0.2)
6972
unicode-display_width (>= 1.1.1, < 3)
7073
unicode-display_width (2.4.2)
@@ -74,10 +77,9 @@ PLATFORMS
7477
x86_64-linux
7578

7679
DEPENDENCIES
77-
jekyll (~> 4.2)
80+
jekyll (~> 4.3.2)
7881
jekyll-titles-from-headings
79-
just-the-docs (= 0.5.1)
80-
webrick
82+
just-the-docs (= 0.6.2)
8183

8284
BUNDLED WITH
83-
2.4.12
85+
2.4.19

0 commit comments

Comments
 (0)