We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
setup-ruby
1 parent eb95350 commit 07c3934Copy full SHA for 07c3934
.github/workflows/jekyll.yml
@@ -17,14 +17,12 @@ jobs:
17
18
# Ruby-specific steps
19
- name: Set up Ruby 2.6
20
- uses: actions/setup-ruby@v1
+ uses: ruby/setup-ruby@ece82769428359c077b5a5eaff268902a303c101
21
with:
22
ruby-version: 2.6.x
23
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
24
- name: Build and test with Rake
- run: |
25
- gem install bundler
26
- bundle install --jobs 4 --retry 3
27
- bundle exec rake
+ run: bundle exec rake
28
29
# Jekyll-specific steps
30
- name: Build the site in the jekyll/builder container
0 commit comments