Skip to content

Commit 05f5b2b

Browse files
Update GitHub Actions and Ruby version (#105)
1 parent 816d257 commit 05f5b2b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/jekyll.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,23 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
- name: Setup Ruby
3737
uses: ruby/setup-ruby@v1
3838
with:
39-
ruby-version: '3.2.2' # Not needed with a .ruby-version file
4039
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4140
cache-version: 0 # Increment this number if you need to re-download cached gems
4241
- name: Setup Pages
4342
id: pages
44-
uses: actions/configure-pages@v3
43+
uses: actions/configure-pages@v5
4544
- name: Build with Jekyll
4645
# Outputs to the './_site' directory by default
4746
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4847
env:
4948
JEKYLL_ENV: production
5049
- name: Upload artifact
5150
# Automatically uploads an artifact from the './_site' directory by default
52-
uses: actions/upload-pages-artifact@v1
51+
uses: actions/upload-pages-artifact@v3
5352

5453
# Deployment job
5554
deploy:
@@ -61,4 +60,4 @@ jobs:
6160
steps:
6261
- name: Deploy to GitHub Pages
6362
id: deployment
64-
uses: actions/deploy-pages@v2
63+
uses: actions/deploy-pages@v4

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.6

Gemfile.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ GEM
1111
http_parser.rb (~> 0)
1212
eventmachine (1.2.7)
1313
ffi (1.17.1-x64-mingw-ucrt)
14+
ffi (1.17.1-x86_64-linux-gnu)
1415
forwardable-extended (2.6.0)
1516
google-protobuf (4.29.3-x64-mingw-ucrt)
1617
bigdecimal
1718
rake (>= 13)
19+
google-protobuf (4.29.3-x86_64-linux)
20+
bigdecimal
21+
rake (>= 13)
1822
http_parser.rb (0.8.0)
1923
i18n (1.14.6)
2024
concurrent-ruby (~> 1.0)
@@ -70,13 +74,16 @@ GEM
7074
safe_yaml (1.0.5)
7175
sass-embedded (1.83.4-x64-mingw-ucrt)
7276
google-protobuf (~> 4.29)
77+
sass-embedded (1.83.4-x86_64-linux-gnu)
78+
google-protobuf (~> 4.29)
7379
terminal-table (3.0.2)
7480
unicode-display_width (>= 1.1.1, < 3)
7581
unicode-display_width (2.6.0)
7682
webrick (1.9.1)
7783

7884
PLATFORMS
7985
x64-mingw-ucrt
86+
x86_64-linux
8087

8188
DEPENDENCIES
8289
jekyll

0 commit comments

Comments
 (0)