File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1515 - name : Setup Ruby
1616 uses : ruby/setup-ruby@v1
1717 with :
18- ruby-version : ' 3.0.2'
18+ ruby-version : ' 3.2'
19+ bundler-cache : true
1920 - name : Enable bundler cache
2021 uses : actions/cache@v4
2122 with :
2526 ${{ runner.os }}-gems-
2627 - name : Install deps
2728 run : |
28- gem install bundler
29+ gem install bundler -v '~> 2.4.0'
2930 rm -rf vendor/bundle
3031 bundle config path vendor/bundle
3132 bundle install --jobs 4 --retry 3
4445 fi
4546 echo "::set-output name=DEPLOY_BRANCH::gh-pages"
4647 - name : Deploy website
47- run : yes | bash bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }}
48- --src ${{ steps.setup.outputs.SRC_BRANCH }}
49- --deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }}
48+ run : |
49+ bundle update
50+ yes | bash bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }} \
51+ --src ${{ steps.setup.outputs.SRC_BRANCH }} \
52+ --deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }}
Original file line number Diff line number Diff line change 1+ 3.2.0
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
33gem "jekyll" , ">= 3.6.3"
4-
54gem 'jekyll-scholar' , group : :jekyll_plugins
65gem "webrick" , "~> 1.7"
6+
7+ # Explicitly set uri version to avoid conflicts
8+ gem "uri" , "~> 0.10.1"
You can’t perform that action at this time.
0 commit comments