Skip to content

Commit 31a6f22

Browse files
committed
Ruby 및 의존성 업데이트
- Ruby 2.7.4 -> 3.4.5 - Jekyll Plugin 및 기타 의존성 업데이트 - Bootstrap 4.3.1 -> 5.3.3 - 그 외 의존성 변경에 따른 업데이트 - GitHub Actions deploy workflow 반영 등
1 parent 9bf0b7f commit 31a6f22

File tree

14 files changed

+229
-330
lines changed

14 files changed

+229
-330
lines changed

.github/workflows/deploy-www.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,25 @@ jobs:
1515
- name: Set up Node.js
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 16.13.2
18+
node-version: 22.17.1
1919
- name: Install node dependencies
2020
run: |
2121
npm install -g yarn
2222
yarn install
23-
- name: Set up Ruby 2.7
23+
- name: Install system dependencies
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y libffi-dev build-essential
27+
- name: Set up Ruby 3.4
2428
uses: ruby/setup-ruby@v1
2529
with:
26-
ruby-version: 2.7.4
30+
ruby-version: 3.4.5
2731
bundler-cache: true
28-
- name: Install ruby dependencies
32+
- name: Verify bundler installation and install dependencies
2933
run: |
30-
gem install bundler -v 2.3.13
31-
bundle install
34+
bundler --version
35+
gem install rake
36+
bundle check || bundle install --jobs 4 --retry 3
3237
- name: Initialize & update hub submodule
3338
run: |
3439
git submodule deinit -f . && git submodule update --init --recursive

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
3.4.5

Gemfile

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
source "https://rubygems.org"
2-
ruby "2.7.4"
2+
ruby "3.4.5"
3+
4+
# Ruby 3.4+ required gems (removed from standard library)
5+
gem "csv"
6+
gem "base64"
7+
gem "bigdecimal"
8+
gem "rake"
9+
gem "uri"
10+
11+
# Core Jekyll with Ruby 3.4 compatibility - using patched versions
12+
gem "jekyll", "~> 4.3"
13+
gem "jekyll-sass-converter", "~> 2.2.0"
14+
gem "faraday-retry"
15+
16+
# Sass - using sassc for better Ruby 3.4 compatibility
17+
gem "sassc", "~> 2.4.0"
18+
19+
# Web server for local development
20+
gem "webrick"
321

422
group :jekyll_plugins do
5-
gem "github-pages", :git => "https://github.com/9bow/pages-gem.git"
623
gem "jekyll-paginate-v2"
7-
gem "jekyll-autoprefixer"
24+
# gem "jekyll-autoprefixer" # Temporarily disabled for Ruby 3.4 compatibility
825
gem "jekyll-github-metadata"
9-
gem "execjs", "2.7.0"
26+
gem "jekyll-feed"
27+
gem "jekyll-sitemap"
28+
gem "jekyll-redirect-from"
29+
gem "jekyll-seo-tag"
1030
gem 'tzinfo'
1131
gem 'tzinfo-data'
1232
end

0 commit comments

Comments
 (0)