Skip to content

Commit 35e94da

Browse files
committedMay 7, 2022
node.js 및 ruby 버전 업데이트
1 parent d88f64f commit 35e94da

File tree

10 files changed

+507
-116
lines changed

10 files changed

+507
-116
lines changed
 

‎.github/workflows/deploy-www.yml

+10-17
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,29 @@ on:
77

88
jobs:
99
build:
10-
1110
runs-on: ubuntu-latest
12-
1311
steps:
14-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v3
1513
- name: Set up Node.js
16-
uses: actions/setup-node@v1
14+
uses: actions/setup-node@v3
1715
with:
18-
node-version: '9.8'
16+
node-version: 16.13.2
1917
- name: Install node dependencies
2018
run: |
2119
npm install
22-
- name: Set up Ruby 2.5.9
23-
uses: actions/setup-ruby@v1
20+
yarn install
21+
- name: Set up Ruby 2.7
22+
uses: ruby/setup-ruby@v1
2423
with:
25-
ruby-version: '2.5.9'
24+
ruby-version: 2.7.4
25+
bundler-cache: true
2626
- name: Install ruby dependencies
2727
run: |
28-
gem install bundler -v 2.2.17
28+
gem install bundler -v 2.3.13
2929
bundle install
3030
- name: Initialize & update hub submodule
3131
run: |
3232
git submodule deinit -f . && git submodule update --init --recursive
33-
./_devel/update_hub_submodule.sh
34-
pushd _hub
35-
rm -R `ls -1 -d */`
36-
rm -f README.md
37-
popd
38-
- name: Update submodules
39-
run: |
4033
git submodule update --remote
4134
- name: Build Jekyll site
4235
run: |
@@ -52,4 +45,4 @@ jobs:
5245
git add .
5346
git commit -m "Rebuild"
5447
git push --force $remote_repo master:$remote_branch > /dev/null 2>&1
55-
echo "Done"
48+
echo "Done"

‎.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.8.0
1+
v16.13.2

‎.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.9
1+
2.7.4

‎Gemfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
source "https://rubygems.org"
2-
ruby "2.5.9"
2+
ruby "2.7.4"
33

44
group :jekyll_plugins do
55
gem "github-pages"
66
gem "jekyll-paginate-v2"
7-
gem 'jekyll-autoprefixer'
7+
gem "jekyll-autoprefixer"
8+
gem "execjs", "2.7.0"
89
end

0 commit comments

Comments
 (0)